-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
144 lines (140 loc) · 5.26 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!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
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Lato"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="index.css"/>
<title>Awesome Books</title>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg fixed-top navbar-light">
<div class="container-fluid second-nav">
<a class="navbar-brand hide-sm" href="index.html">
<span><i class="fas fa-book-reader"></i></span>
The Library</a
>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon">
<i class="menuIcon fas fa-bars"></i>
<i class="closeIcon fas fa-times"></i>
</span>
</button>
<div
class="collapse navbar-collapse justify-content-end"
id="navbarSupportedContent"
>
<ul class="navbar-nav mb-2 mb-lg-0 menu">
<li class="nav-item">
<a
class="nav-link active menuItem"
aria-current="page"
href="#book-list"
id="book-list"
>Book List</a
>
</li>
<li class="nav-item">
<a class="nav-link active menuItem" aria-current="page" href="#add-book"
id="add-book"
>Add Book</a
>
</li>
<li class="nav-item">
<a class="nav-link active menuItem" aria-current="page" href="#contact-us"
id="contact-us"
>Contact</a
>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<div class="date"></div>
<section class="library-section" id="library-section">
<h1>Awesome Books</h1>
<div class="library"></div>
</section>
<section class="" id="new-book-section">
<h3>Add New Book</h3>
<form id="book-form" class="gy-2 gx-3 align-items-center d-flex flex-column" >
<div class="w-25" >
<label>Title</label>
<input type="text" class="form-control" id="title" placeholder="Jane Doe">
</div>
<div class="w-25">
<label>Author</label>
<div class="input-group">
<input type="text" class="form-control" id="author" placeholder="Username">
</div>
</div>
<br>
<div class=" col-auto w-25 col-12">
<button type="submit" class="btn btn-primary add-book">Add book</button>
</div>
</form>
</section>
<section id="contact-section">
<h2>Contact Information</h2>
<p>Do you have any questions or you just want to say "Hello"?<br>You can reach out to us!</p>
<ul class="contacts">
<li>
Our email: [email protected], [email protected]
</li>
<li>
Our phone number: +2540000000000, +2347078800891
</li>
<li>
Our address: Champ de Mars, 5 Av. Anatole France, 75007 Paris, France
</li>
</ul>
</section>
</main>
<footer class="page-footer font-small blue">
<!-- Copyright -->
<div class="footer-copyright text-center py-3">© 2022 Copyright:
<a><span><i class="fas fa-book-reader"></i></span>
The Library</a>
</div>
<!-- Copyright -->
</footer>
<script src="./index.js" type="module"></script>
<script src="./modules/luxon.js"></script>
</body>
</html>