-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (61 loc) · 2.02 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
<!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" />
<link rel="shortcut icon" href="bookicon.svg" type="image/x-icon" />
<title>AwesomeBooks</title>
</head>
<body>
<header>
<nav>
<span> Awesome Books</span>
<div>
<a tabindex="1" id="list-link">List</a>
<a tabindex="2" id="add-link">Add new</a>
<a tabindex="3" id="contact-link">Contact</a>
</div>
</nav>
</header>
<p class="date" id="datetime"></p>
<main>
<section id="books" class="content-section">
<h1>All awesome books</h1>
<ul class="booklist-container"></ul>
</section>
<section id="section2" class="content-section hidden">
<h2>Add new book</h2>
<div class="user-input">
<input type="text" name="title" id="new-title" placeholder="Title" />
</div>
<div class="user-input">
<input
type="text"
name="author"
id="new-author"
placeholder="Author"
/>
</div>
<button class="btn" id="add-button">Add</button>
</section>
<section id="section3" class="contact-section hidden">
<h1>Contact information</h1>
<p>
Do you have any questions or you just want to say "Hello"? You can
reach out to us!
</p>
<br /><br />
<p>. Our email:[email protected]</p>
<p>. Our phone number: 5555555</p>
<p>. Our address: Streetname 22, 84503 City, Country</p>
</section>
</main>
<footer>Copyright - All rights reserved</footer>
<script type="module" src="./modules/book.js"></script>
<script type="module" src="./modules/library.js"></script>
<script type="module" src="./modules/luxon.js"></script>
<script type="module" src="index.js"></script>
</body>
</html>