generated from microverseinc/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (62 loc) · 1.93 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
73
74
75
<!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">
<title>Awesome Books shelf</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<nav>
<h1>Awesome Books</h1>
<ul>
<li><a href="#" class="nav-link list active"> List </a></li>
<li><a href="#" class="nav-link addNav"> Add new </a></li>
<li><a href="#" class="nav-link contact">Contact</a></li>
</ul>
</nav>
<div class="timeDisplay">
<div class="date"></div>
<div class="time"></div>
</div>
</header>
<main>
<section id="book-lists">
<div class="section-one">
<h1>All awesome books</h1>
</div>
<div class="table-part">
<ul class="book-list">
</ul>
</div>
</section>
<div class="form-section" id="add">
<h2>Add a new book</h2>
<form id="form">
<input type="text" name="title" id="title" class="input" placeholder="Title"> <br> <br>
<p class="error"></p>
<input type="text" name="author" id="author" class="input" placeholder="Author"> <br> <br>
<button type="submit" class="btn">Add</button>
</form>
</div>
<section class="info-section" id="contact">
<h2>Contact Information</h2>
<p>Do you have any questions to ask or you just want to say "Hello"? <br>
You can reach out to us!
</p>
<ul class="info-contact">
<li>Our email : mateeabraham@gmail.com</li>
<li> Our Address: 22 chiduzor cresent guzape abuja, Nigeria</li>
</ul>
</section>
</main>
<footer>
<p>(c) 2022. App by Matee & Abraham</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>