HtmlTutor.Spogel.com

HTML Reference Guide

UL

<UL
CLASS=type
COMPACT
ID=value
STYLE=css1 properties>
</UL>

Specifies that the following block of text contains individual items that begin with an LI tag. These items are bulleted. The end-tag is required.

CLASS=type
Indicates the class to which the element belongs.
COMPACT
Reduces the spacing between items in the list.
ID=value
Specifies a unique value for the element over the document.
STYLE=css1 properties
Specifies style information.

Example

<UL>

<LI>This is the first bulleted item in the list.

<LI>And this is the second bulleted item in the list.

</UL>

Back to Home