-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (54 loc) · 1.72 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
<!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="stylesheet" href="index.css" />
</head>
<body class="body">
<header>
<nav class="navBar">
<a href="index.htm" class="logo">
<i class="fa-solid fa-book"></i>
<span>AwesomeBooks</span>
</a>
<ul class="nav-ul">
<li><a class="navLink" href="#bookList"> Books</a></li>
<li><a class="navLink" href="#addBook">Add Book</a></li>
<li><a class="navLink" href="#contact-info">Contact</a></li>
</ul>
</nav>
</header>
<div class="date"></div>
<section id="bookList" class="section">
<h1>Awesome Books</h1>
<div class="bookDisplay"></div>
</section>
<section id="addBook" class="section">
<div class="inputs">
<hr />
<h1>Add new book</h1>
<input type="text" placeholder="title" id="titleInput" />
<input type="text" placeholder="Author" id="authorInput" />
<button class="addBtn" type="button">Add</button>
</div>
</section>
<section id="contact-info" class="section">
<h2>Contact Information</h2>
<p>
You can reach to me for any questions, or just to say "Hello" us out at:
</p>
<ul class="contact-ul">
<li>Email : musangamfure@gmail.com</li>
<li>Phone no: +250792457040</li>
<li>Location: Kigali, Rwanda</li>
</ul>
</section>
<footer>
<p>©Awesomebooks</p>
</footer>
<script type="module" src="./index.js"></script>
</body>
</html>