-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
79 lines (78 loc) · 2.32 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
76
77
78
79
<!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" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap"
rel="stylesheet"
/>
<title>Awesome Books</title>
</head>
<body>
<header>
<h2>Awesome Books</h2>
<ul class="nav-link-list">
<li class="nav-item">
<a href="#books" class="nav-link" id="list-link">List</a>
</li>
<li class="nav-item">
<a href="#add-books" class="nav-link" id="add-new-link">Add new</a>
</li>
<li class="nav-item">
<a href="#contact-us" class="nav-link" id="contact-link">Contact</a>
</li>
</ul>
</header>
<div class="content">
<section id="books">
<div id="now"></div>
<h1>All Awesome Books</h1>
<ul id="book-list">
</ul>
</section>
<section class="add-books" id="add-books">
<h1>Add a new Book</h1>
<form action="">
<div>
<input
type="text"
name="title"
id="book-title"
placeholder="title"
/>
<input
type="text"
name="author"
id="book-author"
placeholder="author"
/>
</div>
<button type="submit" id="addBtn">Add</button>
</form>
</section>
<section class="contact-us" id="contact-us">
<h1>Contact Us</h1>
<p>
Do you have any questions or you just want to say "Hello" ? You can
reach out of us!
</p>
<ul class="contact-list">
<li>Our e-mail : [email protected]</li>
<li>Our phone number : 123456789</li>
<li>Our address : Streetname 22, 84503 city, Country</li>
</ul>
</section>
</div>
<footer>
<div class="footer">
<p>Copyright ...</p>
</div>
</footer>
<script src="./index.js" type="module"></script>
</body>
</html>