References

Collection of references for web development.

HTML ul tag

Description

The HTML <ul> element represents an unordered list.

Attributes

Attribute Value Description
reversed boolean Specifies whether the content should be reversed or not.
start number Specifies the start value for numbering the list.
type a
A
i
I
1
Specifies the numbering type.

Example

<ul>
	<li>One</li>
	<li>Two</li>
	<li>Three</li>
</ul>

Example #2

<ul type="I">
	<li>One</li>
	<li>Two</li>
	<li>Three</li>
</ul>

More Examples