-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
63 lines (60 loc) · 1.93 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
<!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="style.css">
</head>
<body>
<nav>
<div class="nav-title">
Awesome Books
</div>
<div class="nav-list">
<ul class="nav-ul">
<li class="list-item">List |</li>
<li class="list-item">Add New |</li>
<li class="list-item">Contact</li>
</ul>
</div>
</nav>
<div class="date-time"></div>
<div class="all-books">
<h2 class="title-list-books">All awesome books</h2>
<div class="list-books">
</div>
</div>
<div class="add-book hidden">
<h2 class="title-form-add">Add a new book</h2>
<form class="form-input">
<ul>
<li>
<input type="text" name="title" placeholder="Title" required />
</li>
<li>
<input type="text" name="author" placeholder="Author" required />
</li>
<li>
<button type="submit">Add</button>
</li>
</ul>
</form>
</div>
<div class="contact hidden">
<h2 class="title-contact">Contact Information</h2>
<p>Do you have any questions or you just want to say "Hello"?</p>
<p>You can reach out to us!</p>
<div class="contact-details">
<span class="contact-list">* Our email: [email protected]</span>
<span class="contact-list">* Our phone number: 1234567</span>
<span class="contact-list">* Our address: Streetname 123 City, Country</span>
</div>
</div>
<footer>
<span>Copyright</span>
</footer>
<script src='index.js'></script>
</body>
</html>