-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (59 loc) · 2.1 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
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<div class="navbar">
<div class="logo">
<h1>Awesome Books</h1>
</div>
<div class="link-container">
<a class="nav-link active" href="#" data-section="books">Books</a>
<a class="nav-link" href="#" data-section="add-book">Add Book</a>
<a class="nav-link" href="#" data-section="contact-info">Contact Info</a>
</div>
</div>
</header>
<p id="current-date"></p>
<section>
<div id="books-section" class="content-section active">
<h2>List of Awesome Books</h2>
<ul id="book-list"></ul>
</div>
</section>
<section id="add-book">
<div id="add-book-section" class="content-section">
<form id="add-form">
<h1>Add a new book</h1>
<input type="text" id="title-input" placeholder="Title" required>
<input type="text" id="author-input" placeholder="Author" required>
<button type="submit">Add</button>
</form>
</div>
</section>
</section>
<section id="contact">
<div id="contact-info-section" class="content-section">
<div class="contact-info">
<h1>Contact information</h1>
<p>Whether you have inquiries or simply wish to greet with a "Hello," feel free to get in touch!</p>
<p>Email: <a href="">email2faizmgmail.com</a></p>
<p>Phone: +917508054667</p>
</div>
</div>
</section>
<footer>
<div class="footer-div">
<p>Copyright : Microverse.org</p>
</div>
</footer>
<script type="module" src="index.js"></script>
<script type="module" src="./modules/book.js"></script>
<script type="module" src="./modules/bookcollection.js"></script>
</body>
</html>