Tabs
Tabs
Tabs are great for grouping information and adding a little bit of design to your course. Adding tabs is a two part process. Remember to only change information inside the content areas such as TAB 1 TITLE and TAB 1 Content.
<div class="enhanceable_content tabs">
<ul>
<li><a href="#tab-1">TAB 1 TITLE</a></li>
<li><a href="#tab-2">TAB 2 TITLE</a></li>
<li><a href="#tab-3">TAB 3 TITLE</a></li>
</ul>
<div id="tab-1">TAB 1 CONTENT...</div>
<div id="tab-2">TAB 2 CONTENT....</div>
<div id="tab-3">TAB 3 CONTENT....</div>
</div>
Keep the content between the respective <div> tags and all should work fine.
Example