-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
74 lines (52 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery-3.4.1.min.js"></script>
<title> My Library </title>
</head>
<body>
<div class="container mt-3">
<h1> My Library </h1>
<hr>
<div class="row">
<div class="col-md-4">
<form action="" id="new-book">
<div class="form-group">
<label for="title">Book Title</label>
<input type="text" class="form-control" id="title">
</div>
<div class="form-group">
<label for="author">Author</label>
<input type="text" class="form-control" id="author">
</div>
<div class="form-group">
<label for="image">Book Cover</label>
<input type="text" class="form-control" id="image">
</div>
<button type="submit" class="btn btn-primary">SAVE</button>
</form>
</div>
<div class="col-md-8 mt-3">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>Book Cover</th>
<th>Book Title</th>
<th>Author</th>
<th></th>
</tr>
</thead>
<tbody id="book-list">
</tbody>
</table>
</div>
</div>
</div>
<script src="js/appES6.js"></script>
</body>
</html>