-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (45 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
<!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" />
<link rel="stylesheet" href="style.css" />
<title>Library</title>
</head>
<body id="body">
<div id="head-div">
<header id="header">Library</header>
<div id="user-input-div">
<div id="new-book-button-div">
<button id="new-book-button">NEW BOOK</button>
</div>
<div id="form-div">
<form id="book-form">
<div id="form-title">
<label for="title">Title:(required)</label>
<input type="text" name="title" id="title" required />
</div>
<div id="form-author">
<label for="author">Author:(required)</label>
<input type="text" name="author" id="author" required />
</div>
<div id="form-pages">
<label for="pages">Page Count:(required)</label>
<input type="number" name="pages" id="pages" required min="1" />
</div>
<div id="form-read">
<label for="read">Read</label>
<input type="checkbox" name="read" id="read" />
</div>
<div id="submit-form-div">
<button type="submit" id="add-book">ADD BOOK</button>
</div>
</form>
</div>
</div>
</div>
<div id="library-div"></div>
<script src="script.js"></script>
</body>
</html>