-
-
Save CEscorcio/6080623 to your computer and use it in GitHub Desktop.
Tabs in bootstrap framework
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
<div class="tabbable"> | |
<ul class="nav nav-tabs"> | |
<li class="active"><a href="#pane1" data-toggle="tab">Tab 1</a></li> | |
<li><a href="#pane2" data-toggle="tab">Tab 2</a></li> | |
<li><a href="#pane3" data-toggle="tab">Tab 3</a></li> | |
<li><a href="#pane4" data-toggle="tab">Tab 4</a></li> | |
</ul> | |
<div class="tab-content"> | |
<div id="pane1" class="tab-pane active"> | |
<h4>The Markup</h4> | |
<pre>Code here ...</pre> | |
</div> | |
<div id="pane2" class="tab-pane"> | |
<h4>Pane 2 Content</h4> | |
<p> and so on ...</p> | |
</div> | |
<div id="pane3" class="tab-pane"> | |
<h4>Pane 3 Content</h4> | |
</div> | |
<div id="pane4" class="tab-pane"> | |
<h4>Pane 4 Content</h4> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment