generated from acciojob/book-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
49 lines (40 loc) · 931 Bytes
/
main.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- the entire body must be written by student -->
<h1>MyBookList</h1>
<from method="Post" class="form-group" >
<div >
<lable>Title</lable><br>
<input id="title" type="text"><br><br>
<lable>Author</lable><br>
<input id="author" type="text"><br><br>
<lable>ISBN#</lable><br>
<input id="isbn" type="text"><br><br>
<button id="submit" type="submit">Add Book</button></br>
<div class="tablediv">
<table id="book-list" class="table table-striped">
<tr>
<th>Title</th>
<th>Auhor</th>
<th>ISBN#</th>
<th></th>
</tr>
<!-- <tr>
<td>Book 1</td>
<td>Author1</td>
<td>1</td>
<td>
<button class="delete"> X </button></td>
</tr> -->
</table>
</div>
</div>
</from>
<script type="text/javascript" src="./script.js">
</script>
</body>
</html>