-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (50 loc) · 1.64 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
<!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">
<script src="https://cdn.jsdelivr.net/npm/luxon@2.0.2/build/global/luxon.min.js"></script>
<link rel="stylesheet" href="styles.css">
<title>Awesome Books Project</title>
</head>
<body>
<nav>
<h1><a href="#">Awesome Books</a></h1>
<ul class="list-items">
<li><a href="#" class="nav-item-1">List</a></li>
<li><a href="#" class="nav-item-2">Add New</a></li>
<li><a href="#" class="nav-item-3">Contact</a></li>
</ul>
</nav>
<div class="time"></div>
<div class="container">
<h1>All awesome books</h1>
<ul class="books"></ul>
<hr>
</div>
<div class="new-book">
<h2>Add a new book</h2>
<form action="#" id="newBook">
<input type="text" id="title" placeholder="Book title" />
<br />
<input type="text" id="author" placeholder="Book authur" />
<br />
<button type="submit" class="btn">Add</button>
</form>
</div>
<div class="contact">
<h1>Contact Information</h1>
<p>Do you have any questions or you just want to say "Hello"?<br> You can reach out to us:</p>
<ul>
<li>Email: rickymormor1@gmail.com jeffkayombo16@gmail.com</li>
<li>Phone Numbers: +23355145007 +260954789820</li>
<li>Address: Accra, Ghana Lusaka, Zambia</li>
</ul>
</div>
<footer>
<div class="footer">Copyright</div>
</footer>
<script src="main.js"></script>
</body>
</html>