UL TAG and ATTRIBUTES

<UL></UL>

This element is used to indicate an unordered list, namely a collection of items that do not have a numerical ordering. The individual items in the list are defined by the <LI> element, which is the only allowed element within the <UL> element.


ATTRIBUTES

CLASS = "class name(s)"
STYLE = "style information"
TYPE = "CIRCLE | DISK | SQUARE"

EVENTS

onclick
ondblclick
onkeydown
onkeypress
onkeyup
onmousedown
onmousemove
onmouseout
onmouseover
onmouseup


CLASS  See Cascading Style Sheets (CSS) Information.

STYLE  See Cascading Style Sheets (CSS) information.

TYPE  The TYPE attribute is used to set the bullet style for the list. The values defined are CIRCLE, DISC and SQUARE. The default is DISC.

Back to Top