-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (56 loc) · 2.17 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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="index.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>Awesome Book</title>
</head>
<body>
<header>
<nav class="navlist">
<h1>Awesome Books</h1>
<ul class="nav-list">
<li><a href="" class="nav-list-item" id="list-btn">List</a></li>
<li><a href="" class="nav-list-item" id="new-btn">Add new </a></li>
<li><a href="" class="nav-list-item" id="contact-btn">Contact</a></li>
</ul>
</nav>
<span class="date1"></span>
</header>
<main>
<section class="library-section">
<h2>All Awesome Books</h2>
<div class="Books__Section"></div>
</section>
<section class="form-section hide">
<h2 class="heading">Add a new book</h2>
<form>
<input type="text" placeholder="Title" name="title" class="title-input" /><br /><br />
<input type="text" placeholder="Author" name="author" class="author-input" /><br /><br />
<button type="submit" class="AddButton">Add</button>
</form>
</section>
<section class="contact-section hide">
<h2 class="contact-section-heading">Contact Information</h2>
<p>
Do have any questions or you just want to say "Hello"?
</p>
<p>You can reach out to us</p>
<ul>
<li>Our email: mail.mail@mail.com</li>
<li>Our phone number: 00464654816</li>
<li>Our address: Haldwani Uttarakhand 263139, India</li>
</ul>
</section>
</main>
<footer class="footer">Copyright</footer>
<br>
<div id="line"></div>
<script src="https://cdn.jsdelivr.net/npm/luxon@1.25.0/build/global/luxon.min.js" crossorigin="anonymous"></script>
<script src="index.js" type="module" ></script>
</body>
</html>