You can easily create lists on your web pages using simple html coding.
Begin your list with <UL> and follow it with </UL>; type <LI> in front of each list item. Each list item will be marked by a bullet. Here is an example of the code.
<UL>
<LI>Breakfast
<LI>Lunch
<LI>Dinner
</UL>
This code will create the following list.
You can also create numbered lists. Begin your list with <OL> and follow it with </OL>. Here is an example of the code.
<OL>
<LI>Breakfast
<LI>Lunch
<LI>Dinner
</OL>
This code will create the following list.
- Breakfast
- Lunch
- Dinner
|