To create bulleted lists, use the <UL> and </UL> tags (UL stands for "unordered list", meaning that the list items are not numbered). Each item on the list is enclosed by <LI> and </LI> tags (LI stands for "list item"). So the following code...

<UL>
<LI>apples</LI>
<LI>oranges</LI>
<LI>bananas</LI>
</UL>

...Will create the list shown below. If you replace the first and last tags with <OL> and </OL>, the list will become an "ordered list", and the list items will be numbered:

  1. apples
  2. oranges
  3. bananas