-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (43 loc) · 1.68 KB
/
index.html
File metadata and controls
48 lines (43 loc) · 1.68 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
<!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>MyBookListApp</title>
<link rel="stylesheet" href="https://bootswatch.com/5/slate/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container mt-4">
<h1 class="display-4 text-center"><i class="fa-solid fa-book-bookmark"></i> My<span class="text-info">BookList</span>App</h1>
<form action="" id="book-form" class="mt-4">
<div class="mt-3">
<input type="text" class="form-control" id="title" placeholder="Title">
</div>
<div class="mt-3">
<input type="text" class="form-control" id="author" placeholder="Author">
</div>
<div class="mt-3">
<input type="text" class="form-control" id="isbn" placeholder="ISBN">
</div>
<div class="d-grid mt-3">
<button type="submit" class="btn btn-success">Add Book</button>
</div>
</form>
<table class="table table-striped mt-5">
<thead>
<tr>
<th scope="col">Title</th>
<th scope="col">Author</th>
<th scope="col">#ISBN</th>
<th scope="col"></th>
</tr>
</thead>
<tbody id="book-list"></tbody>
</table>
</div>
<script src="app.js"></script>
</body>
</html>