-
-
Save stormsson/8476490 to your computer and use it in GitHub Desktop.
HTML - Bootstrap 2.3.2 Tabs
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
<ul class="nav nav-tabs" id="myTab"> | |
<li class="active"><a href="#home">Home</a></li> | |
<li><a href="#profile">Profile</a></li> | |
<li><a href="#messages">Messages</a></li> | |
</ul> | |
<div class="tab-content"> | |
<div class="tab-pane active" id="home">...</div> | |
<div class="tab-pane" id="profile">...</div> | |
<div class="tab-pane" id="messages">...</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment