-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.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
<!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</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<nav>
<p>Awesome Books</p>
<ul class="nav-list">
<li><a class="list" href="#">List</a></li>
<li><a class="add" href="#">Add new</a></li>
<li><a class="contact" href="#">Contact</a></li>
</ul>
</nav>
<div class="time"></div>
<section class="books-section">
<h1 class="title">Awesome Books</h1>
<div class="display-books"></div>
</section>
<br />
<section class="add-book-section d-none">
<h3 class="sub-title">Add a new book</h3>
<form class="add-book-form">
<input type="text" class="author-input" placeholder="Author" />
<br />
<input type="text" class="title-input" placeholder="Title" />
<br />
<button class="btn-add">Add</button>
</form>
</section>
<section class="contact-section d-none">
<h2>Contact information</h2>
<p>Do you have any any questions or you just want to say "hello"</p>
<ul>
<li>Our Email ...</li>
<li>Our Phone Number</li>
<li>Our Address...</li>
</ul>
</section>
<footer>
<p>CopyRight.....</p>
</footer>
<script type="module" src="index.js"></script>
</body>
</html>