Back to De Anza College Home Faculty Support
De Anza College | Faculty Directory

Membership

Join Now
Login

Creating Lists With HTML

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.

  • Breakfast
  • Lunch
  • Dinner

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.

  1. Breakfast
  2. Lunch
  3. Dinner
 Updated Thursday, March 28, 2002 at 11:45:05 AM by Manila Support - FacultySupport@fhda.edu
Login | Logout | This page visited 6032 times.