forked from mlscgescoe/bytebooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (54 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-Library</title>
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<header>
<div id="navbar">
<h2>E-Library</h2>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="pages/books.html">Books</a></li>
<li><a href="pages/login.html">Log In</a></li>
<li><a href="pages/about-us.html">About Us</a></li>
<li><a href="pages/contact.html">Contact Us</a></li>
</ul>
</div>
</header>
<main>
<div class="welcome">
<h1>Welcome to the E-Library</h1>
<p>A brief introduction to the e-library.</p>
</div>
<div class="search">
<input type="text" placeholder="Search for books">
<button type="submit">Search</button>
</div>
<section class="featured-books">
<h2>Featured Books</h2>
<div class="img1">
<img class="book-img" src="static/book1.jpeg">
<img class="book-img" src="static/book2.jpeg">
<img class="book-img" src="static/book3.jpeg">
</div>
</section>
</main>
<footer>
<div class="contact-info">
<p>Contact information</p>
</div>
<div class="static-pages">
<ul>
<li><a href="pages/about.html">About Us</a></li>
<li><a href="pages/contact.html">Contact Us</a></li>
<li><a href="pages/privacy.html">Privacy Policy</a></li>
<li><a href="pages/terms.html">Terms of Service</a></li>
</ul>
</div>
</footer>
</body>
</html>