-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (29 loc) · 838 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Library</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Your Library</h1>
<div id="newBook">
<button id="newBtn">New Book</button>
</div>
<div id="popUp">
<h2>Add a Book</h2>
<form id="form">
<span id="close">close</span>
<input type="text" id="title" name="title" placeholder="Title">
<input type="text" id="author" name="author" placeholder="Author">
<input type="text" id="pages" name="text" placeholder="No. of Pages">
<div id='checkbox'>
<p><label >Read: </label><input type='checkbox' id='read' name='read'></p>
</div>
<input type="submit" id="addBtn" value="Add">
</form>
</div>
<div id="list-container"></div>
<script src="script.js"></script>
</body>
</html>