-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (51 loc) · 2.18 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
<!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>Booklist</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<p class="logo"><a href="#">Awesome Books</a></p>
<ul class="menu">
<li class="menu-list"><a href="#" class="nav-list active-tab" data-tab="index">List</a></li>
<li class="menu-list"><a href="#" class="nav-list" data-tab="add_book">Add New</a></li>
<li class="menu-list"><a href="#" class="nav-list" data-tab="contact">Contact</a></li>
</ul>
</header>
<main>
<div class="date" id="date"></div>
<br>
<section id="index" class="section b-tab active-tab" aria-label="section">
<h1>All Awesome Books</h1>
<div id="book-list"></div>
</section>
<section id="add_book" class="section b-tab" aria-label="section">
<div class="add-form">
<h1>Add a new book</h1>
<input type="text" placeholder="Title" required id="title"><br>
<input type="text" placeholder="Author" required id="author"><br>
<button class="btn" type="button" id="btnAdd">Add</button>
</div>
<p id="error"></p>
</section>
<section id="contact" class="section b-tab contact" aria-label="section">
<h1 class="title">Contact information</h1>
<div class="contact-text"></div>
<p>Do you have any questions or you just want to say "Hello"?</p>
<p>You can reach out to us!</p>
<ul class="contact-list">
<li>Our e-mail: [email protected]</li>
<li>Our phone number: 00435866534422</li>
<li>Our address Streetname 22, 84503 City, Country</li>
</ul>
</section>
</main>
<footer>Copyright @ Ahmad x Donard x Yannick </footer>
<script type="module" src="./js/main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/global/luxon.min.js"></script>
</body>
</html>