previous | start | next

HTML List Tags

There are three commonly used list formats in HTML:
 
Unnumbered (or bulleted) lists use the <UL> tag:
<UL>
    <LI>List item
    <LI>Another list item
</UL>
Numeric (or numbered) lists use the <OL> (ordered list) tag:
<OL>
    <LI>First list item
    <LI>Second list item
</OL>
Description Lists use the <DL> tag:
<DL>
<DT>Title of first item
    <DD>Data for first item
<DT>Title of second item
    <DD>Data for second item
</DL>

 


previous | start | next