-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<title>Project number 2</title>
</head>
<body>
<div class="nav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="/Book-app/about.html">About</a></li>
</ul>
</div>
<div class="addbook">
<div class="booking">
<form>
<input id="book" class="form-control form-control-lg" type="text" placeholder="Book Name">
<input id="author" class="form-control form-control-lg" type="text" placeholder="Author Name">
</form>
<div class="button">
<button id="btn" type="button" class="btn btn-primary">Add Book</button>
</div>
</div>
</div>
<div class="showbook">
<table class="table table-dark">
<tbody>
<tr>
<th>S.No</th>
<th>book Name</th>
<th>Author Name</th>
<th>Date</th>
<th><button class="btn btn-primary" id="dlt">Delete All</button></th>
</tr>
</tbody>
<tbody id="showbook">
</tbody>
</table>
</div>
<footer>
©Aamir Bhat
</footer>
<script src="index.js"></script>
</body>
</html>