-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (47 loc) · 1.5 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
<!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>
<nav>
<h3>All awesome books</h3>
<div class="divNav">
<p id="list" class="link">List</p>
<p>|</p>
<p id="addNew" class="link">Add New</p>
<p>|</p>
<p id="contact" class="link">Contact</p>
</div>
</nav>
<section id="dateTime"></section>
<div id="body">
<section id="addBook" class="hide"></section>
<section id="newBook">
<h2>Add a new book</h2>
<form id="form">
<input type="text" name="title" id="title" placeholder="Title" autocomplete="off">
<input type="text" name="author" id="author" placeholder="Author" autocomplete="off">
<button type="submit" id="addButton">Add</button>
</form>
</section>
<section id="contactBook" class="hide">
<h2>Contact Information</h2>
<div>
<p>Do you have any questions or you just want to say "Hello"?</p>
<p>You can reach out to us!</p>
</div>
<ul>
<li>Our e-mail: [email protected]</li>
<li>Our phone number: 0043586534422</li>
<li>Our address: Streetname 22, 84503 City, Country</li>
</ul>
</section>
</div>
<script type="module" src="index.js"></script>
</body>
</html>