Last active
July 14, 2016 21:32
-
-
Save RandyBooth/6611027 to your computer and use it in GitHub Desktop.
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
<h1>H1</h1> | |
<h2>H2</h2> | |
<h3>H3</h3> | |
<h4>H4</h4> | |
<h5>H5</h5> | |
<h6>H6</h6> | |
<strong>Strong</strong> | |
<em>Italic</em> | |
<a href="#">Link</a> | |
<ul> | |
<li>List 1</li> | |
<li>List 2</li> | |
</ul> | |
<ul> | |
<li>List 1 | |
<ul> | |
<li>List 1-1-1</li> | |
<li>List 1-1-2</li> | |
</ul> | |
<ul> | |
<li>List 1-2-1</li> | |
<li>List 1-2-2</li> | |
</ul> | |
</li> | |
<li>List 2 | |
<ul> | |
<li>List 2-1-1</li> | |
<li>List 2-1-2</li> | |
</ul> | |
<ul> | |
<li>List 2-2-1</li> | |
<li>List 2-2-2</li> | |
</ul> | |
</li> | |
</ul> | |
<ol> | |
<li>List 1</li> | |
<li>List 2</li> | |
</ol> | |
<ol> | |
<li>List 1 | |
<ul> | |
<li>List 1-1-1</li> | |
<li>List 1-1-2</li> | |
</ul> | |
<ul> | |
<li>List 1-2-1</li> | |
<li>List 1-2-2</li> | |
</ul> | |
</li> | |
<li>List 2 | |
<ul> | |
<li>List 2-1-1</li> | |
<li>List 2-1-2</li> | |
</ul> | |
<ul> | |
<li>List 2-2-1</li> | |
<li>List 2-2-2</li> | |
</ul> | |
</li> | |
</ol> | |
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p> | |
<p><a href="#">Link</a> in paragraph</p> | |
<table class="table"> | |
<caption>table title and/or explanatory text</caption> | |
<thead> | |
<tr> | |
<th>header</th> | |
<th>header</th> | |
<th>header</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>data</td> | |
<td>data</td> | |
<td>data</td> | |
</tr> | |
</tbody> | |
</table> | |
<form> | |
<div class="form-group"> | |
<label for="exampleInputName1">Name</label> | |
<input type="text" class="form-control" id="exampleInputName1" placeholder="Name"> | |
</div> | |
<div class="form-group"> | |
<label for="exampleInputEmail1">Email address</label> | |
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email"> | |
</div> | |
<div class="form-group"> | |
<label for="exampleInputPassword1">Password</label> | |
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password"> | |
</div> | |
<div class="form-group"> | |
<label for="exampleInputPhone1">Phone</label> | |
<input type="tel" class="form-control" id="exampleInputPhone1" placeholder="Phone"> | |
</div> | |
<div class="form-group"> | |
<label for="exampleInputMessage1">Message</label> | |
<textarea type="tel" class="form-control" id="exampleInputMessage1" placeholder="Message"></textarea> | |
</div> | |
<div class="form-group"> | |
<label for="exampleInputFile">File input</label> | |
<input type="file" id="exampleInputFile"> | |
<p class="help-block">Example block-level help text here.</p> | |
</div> | |
<div class="checkbox"> | |
<label> | |
<input type="checkbox"> Check me out | |
</label> | |
</div> | |
<div class="radio"> | |
<label> | |
<input type="radio"> Check me out | |
</label> | |
</div> | |
<button type="submit" class="btn btn-default">Submit</button> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment