-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (55 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Awesome Books</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<nav>
<h1>Awesome Books</h1>
<ul>
<li class="list-btn">List</li>
<li class="add-new-btn">Add new</li>
<li class="contact-btn">Contact</li>
</ul>
</nav>
</header>
<main>
<p class="date"></p>
<section class="book-list-sec">
<h2>All awesome books</h2>
<section class="book-list">
<!-- contain books added-->
</section>
</section>
<section class="form-sec">
<h2>Add a new book</h2>
<form id="form">
<input type="text" name="title" class="title" placeholder="Enter book title">
<input type="text" name="author" class="author" placeholder="Enter book author">
<input type="submit" class="add-btn" value="Add">
</form>
</section>
<section class="contact">
<h2>Contact information</h2>
<p>Do you have any question or you just want to say
"Hello"? You can reach out to us!
</p>
<ul>
<li>Our email: uzochukwuwinnie@gmail.com</li>
<li>Our Linkedin Profile:
<a href="https://linkedin.com/in/wineshuga">Nweneary Uzochukwu Winnie</a>
</li>
<li>Our address: Lagos, Nigeria</li>
</ul>
</section>
</main>
<footer>
<p>Copyright...</p>
</footer>
<script type="module" src="./index.js"></script>
</body>
</html>