-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (55 loc) · 2.25 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
<!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" />
<link rel="stylesheet" href="index.css" />
<title>Awesome Books</title>
</head>
<body>
<main>
<nav class="navContainer">
<h1 class="title1">Awesome Books Collection</h1>
<div class="nav d-none"></div>
<div class="close d-none"></div>
<ul class="navUl">
<li id="bookList" class="navLi pointer">List of Books</li>
<li id="addNew" class="navLi pointer">Add New</li>
<li id="contactInfo" class="navLi pointer">Contact</li>
</ul>
</nav>
<div class="time-div">
<p class="time"></p>
</div>
<div class="container d-flex">
<section id="div-container">
<ul class="contactInfoDiv d-none">
<li>Contact information</li>
<li><span>Do you have any questions or you want to reach out to say 'Hello'?</span> <br>You can reach out to us!</li>
<li><span>Our e-mail: </span>gegardus@gmail.com</li>
<li><span>Our phone number: </span>223322</li>
<li><span>Our address: </span>Microverse, Solar System, Milky Way</li>
</ul>
<div id="bookItem" class="d-flex d-none"></div>
</section>
</div>
<form id="form" class="d-flex">
<h2>Add a new book</h2>
<label for="title">
<input class="input-title" id="title" type="text" placeholder="Title" required>
</label>
<label for="author">
<input class="input-author" id="author" type="text" placeholder="Author" required>
</label>
<button type="submit" class="add-btn">Add</button>
</form>
</main>
<footer>
<p>© Copyright 2022 Gegardus</p>
</footer>
<script type="module" src="index.js"></script>
<script src="https://moment.github.io/luxon/global/luxon.min.js"></script>
<script type="module" src="modules/date.js"></script>
</body>
</html>