-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (54 loc) · 1.84 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
<!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="./style.css" />
<title>Awesome Books</title>
</head>
<body>
<!-- header section with logo/name, menu and date -->
<header>
<div class="header">
<logo class="logo"><img src="ab-logo-bg.png" alt="Awesome Books logo"></logo>
<nav class="header-nav">
<ul class="menu">
<li class="menu-item" value="list"><a href="#">List</a><span>|</span></li>
<li class="menu-item" value="add"><a href="#">Add new </a><span>|</span></li>
<li class="menu-item" value="info"><a href="#">Contact</a></li>
</ul>
</nav>
</div>
<div class="current-date"></div>
</header>
<section class="collection">
<h2>All Awesome Books</h2>
<div id="show-bks"></div>
</section>
<section class="add-books-section">
<h2>Add a new book:</h2>
<form id="new-bk">
<input id="bk-title" type="text" name="title" placeholder="Title" required />
<input id="bk-author" type="text" name="author" placeholder="Author" required />
<button id="add-bk" class="add-book-btn order2" type="submit">ADD</button>
</form>
</section>
<section class="contact-section">
<h2>Contact information</h2>
<p >
Do you have any question, or just want to say "Hello"? <br />
You have reachout to us:
</p>
<ul>
<li class="email">Our email: mail@mail.com</li>
<li class="phone">Our phone number: +233 55 3665 190 or</li>
<li class="address">456 Coding Street, City, Country</li>
</ul>
</section>
<footer class="footer">
<p class="footer-info order0">Copyright</p>
</footer>
<script src="./book.js"></script>
</body>
</html>