This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form class="form-inline"> | |
<input type="text" class="form-control radius" placeholder="Email"> | |
<input type="password" class="form-control radius" placeholder="Password"> | |
<div class="checkbox"> | |
<label> | |
<input type="checkbox"> Remember me | |
</label> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form> | |
<fieldset> | |
<legend>Legend</legend> | |
<div class="form-group radius"> | |
<label for="exampleInputEmail">Email</label> | |
<input type="text" class="form-control" id="exampleInputEmail" placeholder="Enter email"> | |
</div> | |
<div class="form-group radius"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="form-group has-warning"> | |
<label class="control-label" for="inputWarning">Input with warning</label> | |
<input type="text" class="form-control" id="inputWarning"> | |
</div> | |
<div class="form-group has-error"> | |
<label class="control-label" for="inputError">Input with error</label> | |
<input type="text" class="form-control" id="inputError"> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form class="form-horizontal"> | |
<div class="form-group"> | |
<label for="inputEmail" class="col-lg-2 control-label">Email</label> | |
<div class="col-lg-10"> | |
<input type="text" class="form-control" id="inputEmail" placeholder="Email"> | |
</div> | |
</div> | |
<div class="form-group"> | |
<label for="inputPassword" class="col-lg-2 control-label">Password</label> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form class="form-inline"> | |
<input type="text" class="form-control" placeholder="Email"> | |
<input type="password" class="form-control" placeholder="Password"> | |
<div class="checkbox"> | |
<label> | |
<input type="checkbox"> Remember me | |
</label> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form> | |
<fieldset> | |
<legend>Legend</legend> | |
<div class="form-group"> | |
<label for="exampleInputEmail">Email</label> | |
<input type="text" class="form-control" id="exampleInputEmail" placeholder="Enter email"> | |
</div> | |
<div class="form-group"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Colored cells --> | |
<table class="table"> | |
<thead> | |
<tr> | |
<th>#</th> | |
<th>Column heading</th> | |
<th>Column heading</th> | |
<th>Column heading</th> | |
</tr> | |
</thead> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Condensed --> | |
<table class="table table-condensed"> | |
<thead> | |
<tr> | |
<th>#</th> | |
<th>First Name</th> | |
<th>Last Name</th> | |
<th>Github user</th> | |
</tr> | |
</thead> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Hover rows --> | |
<table class="table table-hover"> | |
<thead> | |
<tr> | |
<th>#</th> | |
<th>First Name</th> | |
<th>Last Name</th> | |
<th>Github user</th> | |
</tr> | |
</thead> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Bordered --> | |
<table class="table table-bordered"> | |
<thead> | |
<tr> | |
<th>#</th> | |
<th>First Name</th> | |
<th>Last Name</th> | |
<th>Github user</th> | |
</tr> | |
</thead> |