generated from microverseinc/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (63 loc) · 1.91 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
<!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="style.css" />
<script src="https://cdn.jsdelivr.net/npm/luxon@2.0.2/build/global/luxon.min.js"></script>
<title>Awesome Books</title>
</head>
<body>
<header class="header" id="header">
<div class="header-top">
<h1 class="title1">Awesome Books</h1>
</div>
<ul class="nav-bar">
<li class="nav-bar-li" id="booklist">Book List</li>
<li class="nav-bar-li" id="addbook">Add book</li>
<li class="nav-bar-li" id="contactinfo">Contact info</li>
</ul>
</header>
<div class="time"></div>
<section class="dis-none contactinfo-section">
<h2>Contact Info</h2>
<p>
<span> Authors</span>: Ersoy,Reda,Didi,<br />
<span> Organisation</span>: microverse,<br />
<span> Website</span> :microverse.org, <br />
All rights reserved
</p>
</section>
<section class="dis-none" id="booklistsection">
<h2 class="title2">Your book list</h2>
<div class="books-wrapper" id="books-wrapper"></div>
</section>
<section class="input-wrapper">
<h2>Insert Book</h2>
<form id="formContainer" class="form-container">
<input
type="text"
placeholder="Title"
id="title"
name="title"
maxlength="30"
/>
<input
type="text"
placeholder="Author"
id="author"
name="author"
maxlength="30"
/>
<div class="button-container">
<button type="submit" id="add-btn">Add</button>
</div>
</form>
</section>
<footer class="footer">
<span>Copyright</span>
</footer>
<script src="./app.js"></script>
</body>
</html>