-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (81 loc) · 2.18 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
<!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" />
<title>Book list</title>
<link rel="stylesheet" href="./style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css"
integrity="sha512-EZLkOqwILORob+p0BXZc+Vm3RgJBOe1Iq/0fiI7r/wJgzOFZMlsqTa29UEl6v6U6gsV4uIpsNZoV32YZqrCRCQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<div class="container">
<h3>Add Book</h3>
<p class="adding-remove-warning"></p>
<form action="">
<div class="title">
<label for="title">Title</label>
<input
class="u-full-width"
type="text"
name="title"
id="title"
autofocus
required
/>
</div>
<div class="author">
<label for="author">Author</label>
<input
class="u-full-width"
type="text"
name="author"
id="author"
required
/>
</div>
<div class="isbn">
<label for="isbn">ISBN#</label>
<input
class="u-full-width"
type="number"
name="isbn"
id="isbn"
required
/>
</div>
<div class="btn">
<input type="submit" class="u-full-width" value="Submit" required />
</div>
</form>
<div style="overflow-x: auto">
<table class="u-full-width">
<thead>
<tr>
<th>Title</th>
<th>Author</th>
<th>isbn</th>
<th></th>
</tr>
</thead>
<tbody class="book-list">
<tr></tr>
</tbody>
</table>
</div>
<p class="copyright">
Developed By ❤️
<a href="https://www.facebook.com/sdmmobin" target="_blank"
>Mobin Himu</a
>
</p>
</div>
<script src="./javascript/script.js"></script>
</body>
</html>