Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions HTML Advanced/Chapter2/Chapter2.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ <h1 class="text-center">Forms</h1>
<legend>Form title</legend>

<div class="form-group">
<label for="">label</label>
<input type="text" class="form-control" id="" placeholder="Input field">
<label for="name">label</label>
<input type="text" class="form-control" id="name" placeholder="Input field">
</div>


Expand All @@ -37,4 +37,4 @@ <h1 class="text-center">Forms</h1>
<!-- Bootstrap JavaScript -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>
</html>
4 changes: 2 additions & 2 deletions HTML Basic/index/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
</head>
<body>
<h1>Hello, world!</h1>
<h1>Hello world!</h1>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>
</html>