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
<!-- The Basic Grid --> | |
<div class="one column">One</div> | |
<div class="two columns">Two</div> | |
<div class="three columns">Three</div> | |
<div class="four columns">Four</div> | |
<div class="five columns">Five</div> | |
<div class="six columns">Six</div> | |
<div class="seven columns">Seven</div> | |
<div class="eight columns">Eight</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
<div class="pagination"> | |
<ul> | |
<li><a href="#">Prev</a></li> | |
<li class="active"><a href="#">1</a></li> | |
<li><a href="#">2</a></li> | |
<li><a href="#">3</a></li> | |
<li><a href="#">4</a></li> | |
<li><a href="#">Next</a></li> | |
</ul> | |
</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
<ul class="pager"> | |
<li class="previous"><a href="#">← Older</a></li> | |
<li class="next"><a href="#">Newer →</a></li> | |
</ul> |
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
<!-- Vertically centered on both sides --> | |
<div class="rslides_container"> | |
<ul class="rslides" id="slider1"> | |
<li><img src="http://placehold.it/1200x400" alt="" /></li> | |
<li><img src="http://placehold.it/1200x400" alt="" /></li> | |
<li><img src="http://placehold.it/1200x400" alt="" /></li> | |
</ul> | |
</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
<i class="icon-user">Icon User</i> |
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
<ul class="tabs"> | |
<li><a class="active" href="#tab1">Tab 1</a></li> | |
<li><a href="#tab2">Tab 2</a></li> | |
<li><a href="#tab3">Tab 3</a></li> | |
</ul> | |
<ul class="tabs-content"> | |
<li class="active" id="tab1">Lorem ipsum dolor sit amet.</li> | |
<li id="tab2">Aliquam tincidunt mauris eu risus.</li> | |
<li id="tab3">Vestibulum auctor dapibus neque.</li> | |
</ul> |
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
<table class="CLASS_NAME"> | |
<thead> | |
<tr> | |
<th scope="col">Header</th> | |
<th>Header</th> | |
<th>Header</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> |
OlderNewer