-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (56 loc) · 1.71 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>My Books App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main class="container">
<nav>
<div class="logo">Awesome Books</div>
<div>
<a href="#" id="navlist">List</a>
<a href="#" id="navform">Add New</a>
<a href="#" id="navcontact">Contact</a>
</div>
</nav>
<div id="date"></div>
<div id="bklist">
<h1>The Books I've Read!</h1>
<section id="book-list"></section>
</div>
<div id="bkform" class="display-none">
<h1>Add a new Book!</h1>
<form id="book-form">
<div>
<input type="text" id="title" placeholder="Title" />
<input type="text" id="author" placeholder="Author" />
<input type="hidden" id="id" />
<button type="submit">Add book</button>
</div>
</form>
</div>
<div id="bkcontact" class="display-none">
<h1>Contact Information</h1>
<div class="contact">
<div>Do you have any questions or you just want to say "Hello"?
<br><br>You can reach out to us!
</div>
<ul>
<li>E-mail me at "[email protected]"</li>
<li>Reach me on 004358634422</li>
<li>My Address: Streetname 22, 84503 City, Country</li>
</ul>
</div>
</div>
<footer>
Made with 💛 by <a href="https://github.com/Cathella">Nakitto Catherine.</a>
</footer>
</main>
<script src="app.js"></script>
<script src="https://moment.github.io/luxon/global/luxon.js"></script>
</body>
</html>