Contents / Previous / Next


Lists

Unordered list:
  • First item in the list
  • Next item in the list
HTML code:
<UL>
<LI> First item in the list
<LI> Next item in the list
</UL>
Ordered list:
  1. First item in the list
  2. Next item in the list
HTML code:
<OL>
<LI> First item in the list
<LI> Next item in the list
</OL>
Numerical Ordered list:
  1. First item in the list
  2. Next item in the list
HTML code:
<OL type="a">
<LI> First item in the list
<LI> Next item in the list
</OL>