-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.36 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
<!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" />
<title>Awesome books refactored</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div class="container">
<header>
<nav id="nav-bar">
<h1>Awesome Books</h1>
<ul class="nav-list">
<li><a href="#book-list" id="display-list">List</a></li>
<li><a href="#form" id="display-form">Add new</a></li>
<li><a href="#contact" id="display-contact">Contact</a></li>
</ul>
</nav>
<div class="date"></div>
</header>
<main id="main-content">
<h1 id="section-title">All awesome books</h1>
<section class="book-list" id="book-list"></section>
<div class="separator"></div>
<form id="form">
<h2>Add a new book</h2>
<input type="text" id="title" placeholder="Title" />
<input type="text" id="author" placeholder="Author" />
<button type="submit" id="add-book">Add</button>
</form>
<section id="contact"></section>
</main>
<footer>
<p>Copyright ......</p>
</footer>
</div>
<script type="module" src="index.js"></script>
</body>
</html>