-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 994 Bytes
/
index.html
File metadata and controls
27 lines (27 loc) · 994 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Library</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<button id="button">Add Book</button>
<div id="formContainer" style="display: none">
<form id="newform">
<label for="title">Title:</label>
<input type="text" id="title" name="title" required /><br />
<label for="author">Author:</label>
<input type="text" id="author" name="author" required /><br />
<label for="pages">Pages:</label>
<input type="number" id="pages" name="pages" required /><br />
<label for="read">Read:</label>
<input type="checkbox" id="read" name="read" /><br />
<button type="submit">Add Book</button>
</form>
</div>
<div id="libraryContainer"></div>
<script src="script.js"></script>
</body>
</html>