Created
January 20, 2014 17:56
-
-
Save DeanPoulin/8525304 to your computer and use it in GitHub Desktop.
Togglable Tabs Markup
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
| <!-- Nav tabs --> | |
| <ul class="nav nav-tabs"> | |
| <li><a href="#home" data-toggle="tab">Home</a></li> | |
| <li><a href="#profile" data-toggle="tab">Profile</a></li> | |
| <li><a href="#messages" data-toggle="tab">Messages</a></li> | |
| <li><a href="#settings" data-toggle="tab">Settings</a></li> | |
| </ul> | |
| <!-- Tab panes --> | |
| <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 class="tab-pane" id="settings">...</div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment