-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
70 lines (68 loc) · 1.9 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Library</title>
<script
src="https://use.fontawesome.com/releases/v5.14.0/js/all.js"
data-auto-a11y="true"
></script>
<link rel="shortcut icon" href="./favicon/books.png" />
<link rel="stylesheet" type="text/css" href="stylesheet.css" />
</head>
<body>
<header>
<h2>Virtual Library</h2>
<div></div>
<div></div>
<!-- Adds books here -->
</header>
<button id="new-book">+</button>
<div class="overlay"></div>
<div class="bookshelf"></div>
<section id="popup">
<div id="container">
<h1>New Book</h1>
<div class="close">+</div>
<form id="form" action="/" method="GET">
<label for="title">Title:</label>
<input
type="text"
id="title"
name="title"
placeholder="Book Title"
autocomplete="off"
required
/><br />
<label for="author">Author:</label>
<input
type="text"
id="author"
name="author"
placeholder="Author"
autocomplete="off"
required
/><br />
<label for="pages">Number of pages:</label>
<input
type="number"
id="pages"
name="pages"
placeholder="Pages"
autocomplete="off"
required
/><br />
<label for="read">Read the book?</label><br />
<select name="read" id="read">
<option value="Yes">Yes 😃</option>
<option value="No">No 😢</option>
</select>
<br />
<input type="submit" value="Submit" />
</form>
</div>
</section>
<script src="script.js"></script>
</body>
</html>