-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (70 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="index.css" />
<title>Awesome Books</title>
</head>
<body>
<header>
<nav>
<p><a class="logo" href="index.html">Awesome Books</a></p>
<ul class="link">
<li><a href="#" class="list-nav">List</a></li>
<li>|</li>
<li><a href="#" class="books-nav">Add new</a></li>
<li>|</li>
<li><a href="#" class="contact-nav">Contact</a></li>
</ul>
</nav>
</header>
<section>
<p id="time"></p>
</section>
<section>
<div id="container" class="book-list">
<h2>All Awesome Books</h2>
<div id="show_list" class="showBooks"></div>
</div>
<div class="add-books">
<h2>Add Books</h2>
<form action="#" id="my-form">
<div class="inputField">
<label for="title"
><input id="title" placeholder="title" type="text" required
/></label>
</div>
<div>
<label for="author">
<input id="author" placeholder="author" type="text" required />
</label>
</div>
<br />
<div>
<button id="addBtn" type="submit">Add</button>
</div>
</form>
</div>
</section>
<section class="contact">
<div class="info">
<h2>Contact Information</h2>
<p>
Do you have any questions or do just want to say hello?<br />
You can reach out to us
</p>
<ul>
<li><b>Completewebsite@gmail.com</b></li>
<li><b>Our phone number: 3632809218</b></li>
<li><b>Our address: 74 Kimathi street</b></li>
</ul>
</div>
</section>
<footer>
<p>Copyright © 2022 All rights reserved. Tufahel & Lynette.</p>
</footer>
<script type="module" src="index.js"></script>
</body>
</html>