-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (82 loc) · 2.92 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitBook</title>
<link rel="stylesheet" href="style.css">
<!--favicon-->
<link rel="icon" href="images/favicon.jpg" type="image/jpg" sizes="16x16">
</head>
<body>
<nav id="navbar">
<!--<img src="images/art.jpg" alt="serit" id="art">-->
<div id="center">
<div id="header">
<a href="index.html" id="logo">
<img height="100" src="images/favicon.jpg" alt="GitBook" >
</a>
<h1 id="stitle"><b>GitBook</b></h1>
</div>
<!--links-->
<div id="links">
<a href="index.html"id="links">Home</a>
<a href="genres.html"id="links">Genres</a>
<a href="register.html"id="links">Register</a>
<a href="ebooks.html"id="links">Books</a>
<a href="contact.html"id="links">Contact</a>
<!--end of links-->
</div>
</div>
</nav>
<!--end of nav-->
<!--start of main-->
<main id="page">
<!--header-->
<header class="hero">
<div class="hero_container">
<div class="hero_text">
<h1>Simply Books</h1>
<h4>No fluff—only stories that matter.</h4>
</div>
</div>
</header>
<!--end of header-->
<!--genres container-->
<section class="genres_container">
<!--genre tags-->
<div class="genres_tags">
<a href="genres.html"><h3>Romance</h3></a>
<a href="genres.html"><h3>Fantasy</h3></a>
<a href="genres.html"><h3>Horror</h3></a>
<a href="genres.html"><h3>Adventure</h3></a>
<a href="genres.html"><h3>Science</h3></a>
<a href="genres.html"><h3>Sci-fi</h3></a>
<a href="genres.html"><h3>Biography</h3></a>
<a href="genres.html"><h3>History</h3></a>
</div>
<!--end of genre tag-->
</section>
<!--video -->
<aside class="video_container">
<iframe id="video" width="1000" height="auto"
src="https://www.youtube.com/embed/_YqYtdPUis4?si=37u52hzaWDu9BJBd"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay;
clipboard-write; encrypted-media;
gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</aside>
<!-- end of video -->
<!--end of genres container-->
</main>
<!--end of main-->
<!--start of footer-->
<footer id="page_end">
<p class="footer_text">"There is no friend as loyal as a book. A book is a mirror of the soul,<br>
a gateway to new worlds, and a companion through every stage of life.<br>
It teaches without judgment, entertains without expectation, and inspires without limits."</p>
</footer>
<!--end of footer-->
</body>
</html>