-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (59 loc) · 2.03 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
<!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="index.css"/>
<title>Awesome Books with ES6</title>
</head>
<body>
<header class="navigation">
<nav class="navbar">
<img src="logo/book.png" alt="book-logo" class="logo">
<ul class="nav-list">
<li id="list" class="nav-link"><a href="#">List</a></li>
<li id="add" class="nav-link"><a href="#">Add new</a></li>
<li id="contact" class="nav-link"><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<div class="date-time">
<p id="date-time"></p>
</div>
<main>
<section class="container">
<h1>All Awesome Books</h1>
<div class="lib-catalogue">
</div>
</section>
<section class="form-container">
<h1>Add A New Book</h1>
<form action="#" method="Post" class="form-input">
<input type="text" name="title" placeholder="Title" />
<input type="text" name="author" placeholder="Author" />
<button type="button" id="add-btn" class="add-book-btn">Add</button>
</form>
</section>
<section class="contact">
<h2>Contact information</h2>
<div class="contact-container">
<p>
Do have any question or you just want to say "Hello"? <br />
You can reach out to us
</p>
<ul>
<li>Our e-mail: mail@mail.com</li>
<li>Our phone number: 0044586534422</li>
<li>Our address: Streetname 22, 84503 city, country</li>
</ul>
</div>
</section>
</main>
<footer id="footer" class="copyright">
<img src="logo/book.png" alt="book-logo">
<p class="footer-p"> 2022 Awesome Books <br>Design by Joe & Steve</p>
</footer>
<script type="module" src="index.js"></script>
</body>
</html>