-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (58 loc) · 1.79 KB
/
index.html
File metadata and controls
69 lines (58 loc) · 1.79 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Awesome Books</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;1,100;1,200&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="index.css" />
</head>
<body>
<header>
<nav class="nav-bar">
<h1>Awesome Books</h1>
<ul class="navItems">
<li id="list"><a>List</a></li>
<li id="add-books"><a>Add new</a></li>
<li id="contact-section"><a>Contact</a></li>
</ul>
</nav>
</header>
<div>
<p id="date"></p>
</div>
<section class="books-container">
<div>
<h1 class="books-heading">All Awesome Books</h1>
</div>
<div class="books-list">
</div>
</section>
<form class="add-books hide">
<h2 class="form-heading">Add a new book</h2>
<input type="text" id="bookName" placeholder="Title" />
<input type="text" id="bookAuthor" placeholder="Author" />
<button class="add-btn" type="submit">Add</button>
</form>
<section id="contact" class="contact-section hide">
<h2>Contact Information</h2>
<p>
Do you have any questions or you just want to say "Hello"?, <br>
you can reach out to us!
</p>
<ul class="contact-list">
<li>Our email: jimohridwanlekan@email.com, oustanilokman@gmail.com</li>
<li>Our phone number: 0000000000</li>
<li>Our address: Microverse 2.0 City, USA</li>
</ul>
</section>
<footer id="copyright">
<p>2022</p>
</footer>
<script type="module" src="index.js"></script>
<script src="https://moment.github.io/luxon/global/luxon.js"></script>
</body>
</html>