-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1.02 KB
/
index.html
File metadata and controls
32 lines (31 loc) · 1.02 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
<!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="index.css" />
<script src="app.js" defer></script>
</head>
<body>
<main>
<h1>Library</h1>
<button id="toggle">Toggle Dark/Light Mode</button>
<form id="form">
<label for="title" class="text-input">title</label>
<input type="text" name="title" id="title" required />
<label for="author" class="text-input">Author</label>
<input type="text" name="author" id="author" required />
<section>
<label for="primary-read">Read:</label>
<input type="checkbox" name="primary-read" id="primary-read">
<button type="submit">Add book</button>
</section>
</form>
<hr />
<ul id="all-books">
<!-- book list from dom -->
</ul>
</main>
</body>
</html>