-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (111 loc) · 3.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="index.css" />
<title>Awesome Books List</title>
</head>
<body>
<header class="flex flex-justify-center">
<nav class="flex flex-justify-center">
<div class="nav-wrapper flex">
<div class="logo flex">Geegee Library</div>
<div class="menu-items">
<ul class="list-items flex">
<li class="show-split">
<a href="#" id="list-menu">List</a>
</li>
<li class="show-split">
<a href="#" id="add-menu">Add new</a>
</li>
<li>
<a href="#" id="contact-menu">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<section class="date-section flex flex-justify-center">
<div class="set-date flex flex-justify-center flex-end">
<p id="current-date"></p>
</div>
</section>
<section id="lists" class="main-container flex-column show">
<div>
<h1 class="book-header">Geegee Library</h1>
</div>
<div class="title-section" id="books"></div>
</section>
<section id="add-book" class="flex hide">
<div class="add-book-form flex flex-column">
<div
class="section-title flex flex-column flex-justify-center flex-align-center"
>
<h3 class="book-header">Add new book</h3>
</div>
<form id="add-book-form" action="#" class="flex flex-column">
<input
type="text"
class="book-title-input"
id="book-title-input"
placeholder="Enter the book's title"
required
maxlength="250"
/>
<input
type="text"
class="book-author-input"
id="book-author-input"
placeholder="Enter author name"
required
maxlength="60"
/>
<div class="flex form-btn">
<button id="add-button" class="btn" type="submit">Add book</button>
</div>
</form>
</div>
</section>
<section
id="contact-section"
class="contact-section flex flex-justify-center flex-column hide"
>
<div class="flex flex-justify-center flex-column contact-wrapper">
<div class="flex flex-justify-center flex-column flex-align-center">
<h1>Contact Information</h1>
<br />
</div>
<div class="flex flex-justify-center flex-column flex-align-center">
<br />
<p>
Do you have any questions or you just want to say "Hello" <br />
You can reach out to us through:
</p>
<br />
<ul>
<li>Our email: Geegeelibrary@gmail.com</li>
<li>Our phone number: +2393239372</li>
<li>Our address: Britam Tower Nairobi, Kenya</li>
</ul>
</div>
</div>
</section>
<footer class="flex flex-justify-center">
<div class="footer-wrapper flex">
<div class="copyright">
<p>Copyright © 2022 | Some Rights Reserved</p>
</div>
<div class="developer">
<p>
Developed By:
<a href="https://github.com/Graycemuthui" target="blank">Grace</a>
</p>
</div>
</div>
</footer>
<script type="module" src="index.js"></script>
</body>
</html>