Skip to content

Commit ff05f0f

Browse files
committed
index.html fixed
1 parent 7b319e7 commit ff05f0f

File tree

1 file changed

+15
-18
lines changed

1 file changed

+15
-18
lines changed

debugging/book-library/index.html

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33
<head>
4-
<title> </title>
5-
<meta
6-
charset="utf-8"
7-
name="viewport"
8-
content="width=device-width, initial-scale=1.0"
9-
/>
4+
<title>Library</title>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
107
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
118
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
129
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
1310
<link
1411
rel="stylesheet"
1512
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
16-
/>
17-
<link rel="stylesheet" type="text/css" href="style.css" />
13+
>
14+
<link rel="stylesheet" type="text/css" href="style.css">
1815
</head>
1916

2017
<body>
@@ -31,42 +28,42 @@ <h1>Library</h1>
3128
<div class="form-group">
3229
<label for="title">Title:</label>
3330
<input
34-
type="title"
31+
type="text"
3532
class="form-control"
3633
id="title"
3734
name="title"
3835
required
39-
/>
36+
>
4037
<label for="author">Author: </label>
4138
<input
42-
type="author"
39+
type="text"
4340
class="form-control"
4441
id="author"
4542
name="author"
4643
required
47-
/>
44+
>
4845
<label for="pages">Pages:</label>
4946
<input
50-
type="number"
47+
type="text"
5148
class="form-control"
5249
id="pages"
5350
name="pages"
5451
required
55-
/>
52+
>
5653
<label class="form-check-label">
5754
<input
5855
type="checkbox"
5956
class="form-check-input"
6057
id="check"
6158
value=""
62-
/>Read
59+
>Read
6360
</label>
6461
<input
6562
type="submit"
6663
value="Submit"
6764
class="btn btn-primary"
6865
onclick="submit();"
69-
/>
66+
>
7067
</div>
7168
</div>
7269

@@ -93,4 +90,4 @@ <h1>Library</h1>
9390

9491
<script src="script.js"></script>
9592
</body>
96-
</html>
93+
</html>

0 commit comments

Comments
 (0)