Skip to content

Instantly share code, notes, and snippets.

@goofmint
Last active November 10, 2017 06:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goofmint/e1542b36afb02642362a1b5a4d931ab4 to your computer and use it in GitHub Desktop.
Save goofmint/e1542b36afb02642362a1b5a4d931ab4 to your computer and use it in GitHub Desktop.
<div class="tabbable">
<ul class="nav nav-tabs">
<li class="active"><a href="#" data-tab-name="tab1" data-toggle="tab">Section 1</a></li>
<li><a href="#" data-tab-name="tab2" data-toggle="tab">Section 2</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" data-tab-name="tab1">
<p>I'm in Section 1.</p>
</div>
<div class="tab-pane" data-tab-name="tab2">
<p>Howdy, I'm in Section 2.</p>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment