-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (29 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href = "styles.css" type = "text/css" rel = "stylesheet"/>
<title>Library</title>
</head>
<body>
<div id = "container">
</div>
<button id = "create_new">Create New Book</button>
<form id = "create_form">
<fieldset>
<legend>Please add your book</legend>
<label for="title">Title:</label>
<input type="text" name="title" id="title" value="The Birds and the Bees" />
<label for="author">Author:</label>
<input type="text" name="author" id="author" value="Mr. Lisa" />
<label for="pages">Pages:</label>
<input type ="number" name="pages" id="pages" value="223" />
<label for="read">Read?</label>
<input type="checkbox" name="read" id="read" value="Read?" />
<button type="submit" name="confirmCreate" id="confirmCreate" value="create">Create</button>
</fieldset>
</form>
<script src = "scripts.js"></script>
</body>
</html>