-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 1.79 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
<!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>
<main class="main">
<header>
<nav>
<a href="/">Awesome Books</a>
<ul>
<li class="menu-item" data-section="books-list">List</li>
<li class="menu-item" data-section="add-book">Add new</li>
<li class="menu-item" data-section="contact">Contact</li>
</ul>
</nav>
</header>
<div class="date"></div>
<div class="section books-list active">
<div class="heading">
<h2>All Awesome Books</h2>
</div>
<div id="books-container"></div>
</div>
<div class="section add-book">
<h2>Add a new book</h2>
<form method="post" id="add-book">
<input type="text" placeholder="Title" id="title" /><br /><br />
<input type="text" placeholder="Author" id="author" /><br /><br />
<button type="submit">Add</button>
</form>
</div>
<div class="section contact">
<h2>Contact information</h2>
<p>Do have any questions or you just want to say "Hello"? You can reach out to us!</p>
<ul>
<li>Our email: [email protected]</li>
<li>Our phone number: +25148596857</li>
<li>Our address: streetname, 2245 City, Country</li>
</ul>
</div>
</main>
<footer>
<p>Copyright - All rights reserved.</p>
</footer>
<script src="https://moment.github.io/luxon/global/luxon.min.js"></script>
<script src="index.js" type="module"></script>
</body>
</html>