-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (49 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style.css" />
<title>Awesome Books App</title>
</head>
<body>
<header>
<h1>Awesome Books App</h1>
<nav>
<a href="#book" class="list active">List</a>
<a href="#form" class="add-new">Add new</a>
<a href="#contact" class="contact">Contact</a>
</nav>
</header>
<div class="date"></div>
<section id="books">
<h2>Awesome Books List</h2>
<div class="all-books"></div>
</section>
<section class="hidden" id="form">
<form class="new-book">
<span class="successMsg transparent">Awesome Book Added!</span>
<h2>Add a new awesome book</h2>
<input type="text" placeholder="Title" class="title" />
<input type="text" placeholder="Author" class="author" />
<button type="submit" class="add">Add</button>
</form>
</section>
<section id="contact" class="hidden">
<h2>Contact Information</h2>
<p>
Do you have any questions or you just want to say "Hello"? <br />
You can reach out to us!
</p>
<ul>
<li>Our email: mail@mail.com</li>
<li>Our phone number: 0043586534422</li>
<li>Our address: Streetname 22. 84503 City, Country</li>
</ul>
</section>
<footer>
<p>Copyright ...</p>
</footer>
<script src="./script.js"></script>
</body>
</html>