-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>The Library</title>
<meta name="author" content="Matthew">
<meta name="description" content="Small library app">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="page-container">
<h1>The Library</h1>
<dialog>
<form action="GET" class="book-details-form">
<div>
<label for="title">Title</label>
<input type="text" name="title" id="title">
</div>
<div>
<label for="author">Author</label>
<input type="text" name="author" id="author">
</div>
<div>
<label for="pages">Page count</label>
<input type="number" name="pages" id="pages">
</div>
<button type="submit" class="submit-form" autofocus>Submit</button>
<button formmethod="dialog" class="close-modal">Cancel</button>
</form>
</dialog>
<button class="add-button">Add Book</button>
<div class="library-container">
</div>
</div>
</body>
<script src="script.js"></script>
</html>