ORDERED LIST
<ol> type = (A | a | i | I) start = value
<li>
<li>
</ol>
(A | a | i | I) are your options as to which case of letters and what style to use.
If 'type' is omitted, than a numeric ordered list will be used by default, starting with one (1.)
If you choose to use an ordered list that starts with something other than 'a.', 'A.' 'i.', 'I.', or '1.', than value needs to be replaced with the number you want the list to begin at.
UNORDERED LIST
<ul> type = (CIRCLE | DISK | SQUARE)
<li>
<li>
</ul>
(CIRCLE | DISC | SQUARE) are your options as to which symbol you want to use in your list.
DEFINITION LIST
<dl>
<dt> phrase to define <dd> Definition
</dl>
NESTED LIST
This is simply showing how any list can be used within another list.
<ol> type = (A | a | i | I) start = value
<li>
<ul> type = (CIRCLE | DISK | SQUARE)
<li>
<li>
</ul>
<li>
<li>
<li>
</ol>