-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 2.03 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
<!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="style.css" />
<title>Awesome Books</title>
</head>
<body>
<div class="wrapper">
<!-- main navigation bar -->
<nav class="main-nav">
<h1>Awesome Books</h1>
<ul class="main-links">
<li><a href="#" class="active" id="list">List</a></li>
<li><a href="#" class="middle" id="add-new">Add new</a></li>
<li><a href="#" id="contact">Contact</a></li>
</ul>
</nav>
<!-- date below the navigation bar -->
<div id="date"></div>
<!-- list books page -->
<div class="books-container" id="book-con">
<div class="heading">
<h1>All awesome Books</h1>
</div>
<div class="book-list" id="booklist"></div>
</div>
<!-- add book intarface -->
<div class="add-book hide" id="add-book">
<h2>Add a new book</h2>
<form>
<div class="title">
<input type="text" placeholder="Title" id="title" />
</div>
<div class="author">
<input type="text" placeholder="Author" id="author" />
</div>
<button class="btn" type="button" id="add-btn">Add</button>
</form>
</div>
<!-- contact information div -->
<div class="contact-info hide" id="cont-info">
<h2>Contact information</h2>
<p>Do you have any questions or do you just want to say "Hello"?</p>
<p>You can reachout to us!</p>
<ul>
<li>Our email: example23@gmail.com</li>
<li>Our phone number: +251945149</li>
<li>Our address: strict name 22,84503,Canada</li>
</ul>
</div>
<!-- page footer -->
<footer class="footer">
copyright 2022 Francis and Abraha, all rights reserved
</footer>
</div>
<script src="index.js"></script>
</body>
</html>