-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
63 lines (61 loc) · 2.01 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
<!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</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<header>
<nav>
<h1 id="top-header">Awesome Books</h1>
<ul id = "top-nav">
<li id="con-link1"><a href="#">List</a></li>
<li id="con-link2"><a href="#">Add new</a></li>
<li id="con-link3"><a href="#">Contact</a></li>
</ul>
</nav>
<span id = "date"></span>
</header>
<section id="all-book" class = "show">
<h2>All awesome books</h2>
<div class="book-table">
<ul class="all-book"></ul>
</div>
</section>
<section class="form-section" id="add">
<h2>Add a new book</h2>
<div id="form">
<form id="formAdd">
<input type="text" name="title" id="title" class="input" placeholder="Title">
<p class="error"></p>
<input type="text" name="author" id="author" class="input" placeholder="Author">
<button type="submit" class="btn">Add</button>
</form>
</div>
</section>
<section id = "contacts" class = "contacts show">
<h2>Contact Information</h2>
<p>
If you have any questions or suggestions, <br>
you can reach us at:
</p>
<ul id="contacts-ul">
<li>Our email, [email protected]</li>
<li>Our telephone number, +9876567890</li>
<li>Our Address, 420 Downing Alley, England</li>
</ul>
</section>
<footer>
<p>© Copyright 2022 All rights reserved</p>
</footer>
</main>
<script type="module" src="./main/index.js"></script>
</body>
</html>