-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (40 loc) · 1.43 KB
/
index.html
File metadata and controls
41 lines (40 loc) · 1.43 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
33
34
35
36
37
38
39
40
41
<!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="./src/css/main.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<title>Document</title>
</head>
<body>
<header>
<h1>Library</h1>
</header>
<nav>
<button class="add">Add a new book</button>
</nav>
<div class="pop-up hidden">
<form onsubmit="return false">
<label for="btitle">Title:</label>
<input type="text" id="btitle" name="btitle" required />
<label for="bauthor">Author:</label>
<input type="text" id="bauthor" name="bauthor" required />
<label for="bpages">Pages:</label>
<input type="number" id="bpages" name="bpages" required />
<div class="checkbox-wrap">
<input class="check" type="checkbox" id="read" name="read" />
<label for="read" class="last">Read it!</label>
</div>
<div class="button-wrap">
<button type="submit" value="submit" class="confirm">DONE</button>
<button type="button" class="cancel">CANCEL</button>
</div>
</form>
</div>
<div class="library"></div>
<script src="./src/js/main.js"></script>
</body>
</html>