This file contains hidden or 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 action=""> | |
<!-- Label and text input --> | |
<label for="regularInput">Regular Input</label> | |
<input type="text" id="regularInput" /> | |
<!-- Label and textarea --> | |
<label for="regularTextarea">Regular Textarea</label> | |
<textarea id="regularTextarea"></textarea> |
This file contains hidden or 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
<!-- Standard <ul> with class of "tabs" --> | |
<ul class="tabs"> | |
<!-- Give href an ID value of corresponding "tabs-content" <li>'s --> | |
<li><a class="active" href="#simple">Simple</a></li> | |
<li><a href="#lightweight">Lightweight</a></li> | |
<li><a href="#mobileFriendly">Mobile</a></li> | |
</ul> | |
<!-- Standard <ul> with class of "tabs-content" --> | |
<ul class="tabs-content"> |
This file contains hidden or 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
<!-- The container is a centered 960px --> | |
<div class="container"> | |
<!-- Give column value in word form (one, two..., twelve) --> | |
<div class="sixteen columns"> | |
<h1>Full Width Column</h1> | |
</div> | |
<!-- Sweet nested columns cleared with a clearfix class --> | |
<div class="six columns clearfix"> |
NewerOlder