-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (88 loc) · 2.72 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
80
81
82
83
84
85
86
87
88
89
90
<!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="main.css" />
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="book-reader-solid.svg" alt="site logo" />
<p>Awesome Books</p>
</div>
<ul>
<li>
<a href="#" class="links active" data-content="#books">Lists</a>
</li>
<li>
<a href="#" class="links" data-content="#add-book">Add New</a>
</li>
<li><a href="#" class="links" data-content="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<div class="date">
<p></p>
</div>
<!-- View all books -->
<section class="books all active" id="books">
<h2>All awesome Books</h2>
<div class="legend">
<p id="no-data"></p>
<ul id="lists"></ul>
</div>
</section>
<!-- Add new book -->
<section class="books" id="add-book">
<h2>Add a new book</h2>
<form>
<div class="form-controls">
<input type="text" placeholder="Title" id="title" />
</div>
<div class="form-controls">
<input type="text" placeholder="Author" id="author" />
</div>
<span class="error"></span>
<div class="form-btn">
<button type="button" id="add-btn">Add</button>
</div>
</form>
</section>
<!-- Contact details -->
<section class="books" id="contact">
<h2>Contact Information</h2>
<div class="contact-info">
<p>Do have any questions or you just want to say "Hello"?</p>
<p>You can reach out to us!</p>
</div>
<div class="contact-details">
<ul>
<li>
Our Emails:
<a href="mailto:[email protected]">[email protected]</a>
||
<a href="mailto:[email protected]">[email protected]</a>
</li>
<li>Phone Numbers: <b>+2347013703549</b> || <b>+23276716997</b></li>
<li>
Our Addresses: <b>Lagos, Nigeria.</b> ||
<b>Freetown, Sierra Leone.</b>
</li>
</ul>
</div>
</section>
</main>
<footer>
<p>
© Classic, Anselem & Amkam's Awesome Books. All rights reserved.
</p>
</footer>
<script src="https://moment.github.io/luxon/global/luxon.min.js"></script>
<script src="main.js" type="module" ></script>
</body>
</html>