-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 779 Bytes
/
index.html
File metadata and controls
33 lines (29 loc) · 779 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Book List App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>📚 Book List</h1>
<form id="book-form">
<input type="text" id="bookName" placeholder="Book Name" required>
<input type="text" id="authorName" placeholder="Author Name" required>
<button type="submit">Add Book</button>
</form>
<table>
<thead>
<tr>
<th>Book Name</th>
<th>Author</th>
<th>Action</th>
</tr>
</thead>
<tbody id="book-list">
<!-- Dynamic rows will be added here -->
</tbody>
</table>
<script src="script.js"></script>
</body>
</html>