-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (58 loc) · 1.68 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">
<title>Document</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<nav class="nav">
<a href="index.html">Awesome Books</a>
<ul class="nav-ul">
<a href="#books">Books List</a>
<a href="#new-book">Add Book Form</a>
<a href="#contact">Contact Info</a>
</ul>
</nav>
<div class="date" id="date"></div>
<section id="books">
<div id="book-list">
<ul id="books"></ul>
</div>
</section>
<section id="books">
<h1>Awesome Books</h1>
<div id="book-list">
<ul id="books"></ul>
</div>
</section>
<section id="new-book">
<h2 class="add-book">Add a new book</h2>
<div class="book-form" id="book-form">
<ul class="list" id="list">
<li>
<input type="text" id="title" placeholder="Title" required />
</li>
<li>
<input type="text" id="author" placeholder="Author" required />
</li>
</ul>
<button type="submit" id="add-button">Add</button>
</div>
</section>
<section id="contact">
<h3>Contact Information</h3>
<p>Do you have any question or you just want to say "Hello"?</p>
<p class="reach">You can reach out to us:</p>
<p>Phone: 555-555-5555</p>
<p>Email: [email protected]</p>
<p>Our address: Street no 4/6, house no 11, NewYork, America</p>
</section>
<footer>
<h2>Copyright ...</h2>
</footer>
<script type="module" src="./index.js"></script>
</body>
</html>