-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (70 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<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=Montserrat:wght@400;500;600;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/e83d856101.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Awesome Books</title>
</head>
<body>
<!-- Navbar -->
<nav>
<h2 class="logo">Awesome Book</h2>
<ul>
<li><a href="#" id="list-btn" class="active">List</a></li>
<li><a href="#" id="new-btn">New</a></li>
<li><a href="#" id="contact-btn">Contact</a></li>
</ul>
</nav>
<!-- Loading Screen -->
<div class="loader hide" id="load">
<div class="loadingio-spinner-ripple-i4e1w3xi5u"><div class="ldio-6cq23kwp2qh">
<div></div><div></div>
</div></div>
</div>
<!-- Main content -->
<section id="content" class="list-back">
<!-- Library -->
<div class="list show" id="list-id">
<h1>All awesome books</h1>
<div id="library">
<div class="empty" id="empty-id">
<h2>Library is empty. Add some books to see them here</h2>
<i class="fa-solid fa-book fa-3x"></i>
</div>
</div>
</div>
<!-- Form -->
<div class="add hide" id="add-id">
<h1>Add a new Book</h1>
<form action="#" id="form-id">
<input type="text" name="title" id="title" placeholder="Title" required>
<input type="text" name="author" id="author" placeholder="Author" required>
<button id="add-btn" type="submit" >Add</button>
</form>
</div>
<!-- Contact -->
<div class="contact hide" id="contact-id">
<h1>Contact Information</h1>
<p>Do you have any Information or do you just want to say "Hello"? <br> You can reach out to us!</p>
<ul>
<li>Our e-mail: awesome@gmail.com</li>
<li>Our phone number: 0043586534422</li>
<li>Our address: Awesome Street, 2284503 California, U.S.A</li>
</ul>
</div>
</section>
<!-- Footer -->
<footer>
<p>Copyright © 2022 All rights reserved | A project by Zainab and Okemdi</p>
</footer>
<!-- Scripts -->
<script src="script.js"></script>
<script src="localStorage.js"></script>
</body>
</html>