-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (56 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="index.css" />
<title>All Awesome Books</title>
</head>
<body>
<nav class="nav-container">
<div class="logo">Awesome Books</div>
<div class="nav-link">
<ul class="nav-ul">
<li class="list-link"><a href="#list">List</a></li>
<li class="add-new"><a href="#add-book">Add new</a></li>
<li class="contact"><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<section class="date"></section>
<section class="books-list">
<div id="list" class="list">
<h1>All Awesome Books</h1>
<div id="book-list" class="books"></div>
<hr />
</div>
</section>
<section class="form">
<h2>Add a new Book</h2>
<form id="add-book">
<input id="title" type="text" placeholder="Title" />
<input id="author" type="text" placeholder="Author" />
<button type="submit">Add</button>
</form>
</section>
<section id="contact" class="contact-container">
<h2 class="contact-headline">Contact Information</h2>
<p class="contact-paragraph">
Do you have any questions or you just want to say "Hello"?<br />You can
reach out to us!
</p>
<ul class="contact-list">
<li>Our e-mail: [email protected]</li>
<li>Our Phone number: +233548383383</li>
<li>Address: streetname 22, zip-code, city, country.</li>
</ul>
</section>
<footer id="footer" class="footer-container">
<div class="copyright">
<div class="logo">Awesome-Books</div>
<div class="text">2022, Awesome books all rights reserved.</div>
</div>
</footer>
<script type="module" src="index.js"></script>
</body>
</html>