-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (54 loc) · 1.63 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
<!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="index.css">
<title>Awesome Books ES6 Library</title>
</head>
<body>
<header>
<nav class="page-banner">
<h1 class="title"> Awesome Books </h1>
<ul class="right">
<li class="list-item border"> <a id="listbook" href="#book-list">List</a></li>
<li class="add-new border"><a id="addbook" href="#add-books">Add New</a></li>
<li class="contact"><a id="contacts" href="#contact">Contact</a></li>
</ul>
</nav>
<div id="date"> </div>
</header>
<div id="book-list">
<h1>All Awesome Books</h1>
<div class="book-container">
<ul>
</ul>
</div>
</div>
<section class="form" id="add-books">
<h2 class="title">Books to read</h2>
<form>
<input type="text" class="name" name="title" placeholder=" book title"><br>
<input type="text" class="author" name="author" placeholder="author name"><br>
<button class="add">add</button><br>
</form>
</section>
<section class="contact-details" id="contact">
<h1> Contact Information </h1>
<p>Do you have any questions or you just want to say "Hello!"?
<br> you can reach out to us!</p>
<ul>
<li>our email:[email protected]</li>
<li>our Phone Number: 0098 9388472693</li>
<li><Address>our Address: 258 d, kabul Afghanistan</Address></li>
</ul>
</section>
<footer class="footer">
<div>
@Copy writes Basir Mohammadi
</div>
</footer>
<script type="module" src="index.js"></script>
</body>
</html>