Formatting Unordered Lists
Monday, December 7th, 2009We have provided you with some CSS class options for formatting your unordered lists. You may include bullets and spacing. You may remove the bullets, but leave the spacing. Or, you maybe remove the bullets and the spacing. To create an unordered list, use standard HTML similar to this:
<ul>
<li>Item 1</li>
<li>Item 2
<ul>
<li>Sub Item 1</li>
<li>Sub Item 2
<ul>
<li>Sub Sub Item 1</li>
</ul>
</li>
</ul>
</li>
<li>Item 3</li>
<li>Item 4
<ul>
<li>Sub Item 1</li>
<li>Sub Item 2</li>
</ul>
</li>
</ul>