-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 1.87 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
<!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">
<script src="./index.js" type="module"></script>
<link rel="stylesheet" href="./index.css">
<title>Awesome Books: with ES6</title>
</head>
<body>
<header>
<nav>
<h1 class="logo"><a href="">Awesome Books</a></h1>
<ul class="nav-list">
<li class="nav-item"><a href="#" id="listLink" class="link">List</a></li>
<li class="nav-item"><a href="#" id="addLink">Add new</a></li>
<li class="nav-item"><a href="#" id="contactLink">Contact</a></li>
</ul>
</nav>
<time></time>
</header>
<main>
<section id="collection" class="active">
<h1 class="title">Awesome Books</h1>
<ul id="books"></ul>
</section>
<section id="addBook">
<form>
<h1 class="title">Add a new book</h1>
<input id="newTitle" type="text" placeholder="Title" />
<input id="newAuthor" type="text" placeholder="Author" />
<button id="add" type="button">Add</button>
</form>
</section>
<section id="contact">
<h1 class="title">Contact information</h1>
<p>
Do you have any questions, or jus want to say "Hello"? You can reach
out to us!
</p>
<address>
<ul class="contact-list">
<li class="email">Our e-mail: mail@mail.com</li>
<li class="phone">Our phone number: 005554443210</li>
<li class="address">
Our address: Streetname 22, 87654 City, County
</li>
</ul>
</address>
</section>
</main>
<footer>Copyright</footer>
</body>
</html>