Skip to content

Commit b8cfc20

Browse files
committed
used html validator and there is no error
1 parent c719ec1 commit b8cfc20

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

debugging/book-library/index.html

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33
<head>
4-
<title> </title>
5-
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0">
4+
<title>Book Library</title>
5+
<meta charset="utf-8">
66
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
77
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
88
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
@@ -23,9 +23,21 @@ <h1>Library</h1>
2323
<div id="demo" class="collapse">
2424
<div class="form-group">
2525
<label for="title">Title:</label>
26-
<input type="title" class="form-control" id="title" name="title" required>
26+
<input
27+
type="text"
28+
class="form-control"
29+
id="title"
30+
name="title"
31+
required
32+
>
2733
<label for="author">Author: </label>
28-
<input type="author" class="form-control" id="author" name="author" required >
34+
<input
35+
type="text"
36+
class="form-control"
37+
id="author"
38+
name="author"
39+
required
40+
>
2941
<label for="pages">Pages:</label>
3042
<input
3143
type="number"

0 commit comments

Comments
 (0)