-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (70 loc) · 2.49 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">
<link rel="stylesheet" href="styles/index.css">
<title>Awesome books</title>
</head>
<body>
<main>
<header>
<nav id="nav_bar">
<h1>Awesome books</h1>
<ul id="nav_list">
<li><a href="#" class="nav_link" id="list_link" >List</a></li>
<li><a href="#" class="nav_link" id="list_add_new" >Add new</a></li>
<li><a href="#" class="nav_link" id="list_about" >About</a></li>
</ul>
</nav>
</header>
<div class="date-container">
<p id="date"></p>
</div>
<section class="list_link">
<div class="header_books">
<h1>All awesome books</h1>
</div>
<table>
<tbody id="books_list">
</tbody>
</table>
</section id="books_add">
<br>
<hr class="separator">
<section class="list_add_new hidden">
<div class="header_books">
<h1>Add a new book</h1>
</div>
<div id="book_add">
<form method="post" id="form">
<input type="text" id="titleB" placeholder="Title" required><br><br>
<input type="text" id="authorB" placeholder="Author" required><br><br>
<button type="submit">Add</button>
</form>
</div>
</section>
<section class="list_about hidden">
<div class="header_books">
<h1>Contact information</h1>
</div>
<div id="contact_us">
<p>
Do have any question or you just want to say "Hello"?<br>
You can reach out to us :
</p>
<ul>
<li>Our e-mail : <a href="mailto:[email protected]" class="nav_link">[email protected]</a> </li>
<li>Our phone number : +243820000000</li>
<li>Our address : street 22, city, country </li>
</ul>
</div>
</section>
<footer>
<p id="copyright">Copyright</p>
</footer>
</main>
<script src="index.js" type="module"></script>
</body>
</html>