Add lists to your page


To enter an unordered list, do the following:
<UL>
<LI>Item 1
<LI>Item 2
</UL> Notice that the <LI> tag does not require a closing tag.
The above list will give us this:

To enter ordered list, do the following:
<OL>
<LI>Item 1
<LI>Item 2
</OL>
This will give us this:

  1. Item 1
  2. Item 2

Next--->

Send feedback