Unordered Lists
Default unordered list
<ul>
<li>Item One</li>
<li>Item Two</li>
<li>Item Three</li>
</ul>
<li>Item One</li>
<li>Item Two</li>
<li>Item Three</li>
</ul>
The <ul> tag starts an ordered list, and every item in the list must be enclosed in <li> tags. If the type attribute is not specified, the list items will be be labelled with bulletpoints, or discs.
The Type Attribute
The <ul> tag can also have the attribute type set.
<ul type="disc / circle / square"> </ul>
disc - The list items will appear with a solid color circle.
circle - The list items will appear with the outline of a circle.
square - The list items will appear with a solid color square.


