-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (50 loc) · 1.41 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
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styling/style.css">
</head>
<body>
<header>
<h1>My Library</h1>
<button class="modal-new">
New Book
</button>
</header>
<div class="modal-bg">
<div class="modal">
<h1>New Book</h1>
<label for="title">title</label>
<input type="text" id="title">
<label for="author">author</label>
<input type="text" id="author">
<label for="pages">pages</label>
<input type="number" id="pages">
<label for="read-status">Check if read</label>
<input type="checkbox" id="read-status" value="check">
<div class="modal-buttons">
<button class="add-new">Add Book</button>
<button class="close">Cancel</button>
</div>
</div>
</div>
<div class="filter">
<button id="all">
View all
</button>
<button id="read">
Read
</button>
<button id="not-read">
Not Read
</button>
</div>
<div class="library-container">
<div class="bookshelf" id="storage">
</div>
</div>
<script src="script/main.js"></script>
</body>
</html>