Skip to content

Commit 83183be

Browse files
committed
Fixed index.html according to validator
1 parent 7168d78 commit 83183be

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

debugging/book-library/index.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33

44
<head>
5-
<title> </title>
6-
<meta charset="utf-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
5+
<title>Book Library</title>
6+
<meta charset="utf-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
88
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
99
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
1010
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
11-
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" />
12-
<link rel="stylesheet" type="text/css" href="style.css" />
11+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
12+
<link rel="stylesheet" type="text/css" href="style.css">
1313
</head>
1414

1515
<body>
@@ -25,15 +25,15 @@ <h1>Library</h1>
2525
<div id="demo" class="collapse">
2626
<div class="form-group">
2727
<label for="title">Title:</label>
28-
<input type="text" class="form-control" id="title" name="title" required />
28+
<input type="text" class="form-control" id="title" name="title" required>
2929
<label for="author">Author: </label>
30-
<input type="text" class="form-control" id="author" name="author" required />
30+
<input type="text" class="form-control" id="author" name="author" required>
3131
<label for="pages">Pages:</label>
32-
<input type="number" class="form-control" id="pages" name="pages" required />
32+
<input type="number" class="form-control" id="pages" name="pages" required>
3333
<label class="form-check-label">
34-
<input type="checkbox" class="form-check-input" id="check" value="" />Read
34+
<input type="checkbox" class="form-check-input" id="check" value="">Read
3535
</label>
36-
<input type="submit" value="Submit" class="btn btn-primary" onclick="submit();" />
36+
<input type="submit" value="Submit" class="btn btn-primary" onclick="submit();">
3737
</div>
3838
</div>
3939

0 commit comments

Comments
 (0)