-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
257 lines (251 loc) · 8.85 KB
/
index.html
File metadata and controls
257 lines (251 loc) · 8.85 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<!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="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
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 rel="icon" type="image/png" sizes="32x32" href="favicon.ico" />
<link rel="stylesheet" href="css/style.css" />
<title>Book Shall | MIXblack</title>
</head>
<body>
<!-- TOP MENU -->
<nav class="navbar sticky-top navbar-expand-lg navbar-light bg-light">
<div class="container">
<a class="navbar-brand" href="https://hungry-kilby-1eec8f.netlify.com/">
<img
src="img/mixblack-icon.png"
width="30"
height="30"
class="d-inline-block align-top"
alt=""
/>
MIXblack
</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse justify-content-end"
id="navbarNav"
>
<ul class="navbar-nav">
<li class="nav-item active">
<a
class="nav-link"
href="https://hungry-kilby-1eec8f.netlify.com/"
>Home <span class="sr-only">(current)</span></a
>
</li>
<li class="nav-item">
<a
class="nav-link"
href="https://hungry-kilby-1eec8f.netlify.com/work.html"
>
Projects
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- MAIN AREA -->
<main id="main-section">
<div class="container">
<div class="card mt-4">
<div class="card-header">
<h5 class="float-left">BOOK SHALL</h5>
<div class="float-right">
<button type="button" class="btn btn-dark btn-sm disable">
JavaScript Project <span class="badge badge-light">2</span>
</button>
<a
href="https://github.com/Shawprojects/book-shall"
target="_blank"
class="btn btn-outline-success btn-sm"
>
<i class="fab fa-github"></i> Source Code >>
</a>
</div>
</div>
<div class="card-body">
<!-- Book Add Section -->
<p class="card-title text-center">Add Book</p>
<div class="bottom-line"></div>
<form id="book-form">
<div class="form-group row">
<label for="title" class="col-sm-2 col-form-label">Title</label>
<div class="col-sm-10">
<input
type="text"
class="form-control"
id="title"
placeholder="Enter Book Title"
/>
</div>
</div>
<div class="form-group row">
<label for="author" class="col-sm-2 col-form-label"
>Author</label
>
<div class="col-sm-10">
<input
type="text"
class="form-control"
id="author"
placeholder="Enter Author"
/>
</div>
</div>
<div class="form-group row">
<label for="isbn" class="col-sm-2 col-form-label">ISBN#</label>
<div class="col-sm-10">
<input
type="text"
class="form-control"
id="isbn"
placeholder="Enter ISBN"
/>
</div>
</div>
<div class="text-center submit">
<input type="submit" value="ADD" class="btn btn-info" />
<input class="btn btn-secondary" type="reset" value="Reset" />
</div>
</form>
<hr />
<!-- Book List Section -->
<p class="card-title text-center">Book Lists</p>
<div class="bottom-line"></div>
<table class="table table-hover">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Title</th>
<th scope="col">Author</th>
<th scope="col">ISBN</th>
<th></th>
</tr>
</thead>
<tbody id="book-list"></tbody>
</table>
</div>
<!-- ./card-body -->
<div class="card-footer">
<div class="share">
<b>Share -</b>
<a
href="whatsapp://send?text=https://shawprojects.github.io/book-shall/"
class="btn btn-outline-success btn-sm"
>
<i class="fab fa-whatsapp"></i> Whatsapp
</a>
<a
href="mailto:?body=https://shawprojects.github.io/book-shall/"
class="btn btn-outline-danger btn-sm"
>
<i class="fab fa-envelope"></i> Email
</a>
<!-- for call url - tel:?number -->
<!-- for sms - sms:?body=share url -->
<a
href="http://www.facebook.com/share.php?u=https://shawprojects.github.io/book-shall/"
class="btn btn-outline-primary btn-sm"
>
<i class="fab fa-facebook"></i> Facebook
</a>
<a href="#" class="btn btn-outline-danger btn-sm">
<i class="fab fa-instagram"></i> Instagram
</a>
<a
href="http://www.twitter.com/intent/tweet?text=https://shawprojects.github.io/book-shall/"
class="btn btn-outline-info btn-sm"
>
<i class="fab fa-twitter"></i> Twitter
</a>
</div>
</div>
</div>
</div>
</main>
<!-- FOOTER -->
<footer id="main-footer" class="mt-4">
<div class="container">
<div class="text-center">
<p>
Copyright ©
<span id="copyright">
<script>
document
.getElementById("copyright")
.appendChild(
document.createTextNode(new Date().getFullYear())
);
</script> </span
>.
<a
href="https://hungry-kilby-1eec8f.netlify.com/work.html"
target="_blank"
><span class="brand">MIX</span>black</a
>
| All Rights Reserved!
</p>
<div class="social">
<a href="https://github.com/Shawprojects" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="#">
<i class="fab fa-whatsapp"></i>
</a>
<a href="#">
<i class="fab fa-facebook"></i>
</a>
<a href="#">
<i class="fab fa-instagram"></i>
</a>
<a href="#">
<i class="fab fa-twitter"></i>
</a>
</div>
</div>
</div>
</footer>
<!-- SCRIPTS -->
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"
></script>
<script src="appes6.js"></script>
</body>
</html>