Unordered list. The HTML <ul> tag is used for specifying an unordered list (or un-numbered list).

Defines a list that has no logical sequence. Used in conjunction with <li> to define the list items.

Also see <ol> for ordered (numbered) lists and <##_tag-menu_##> for menu lists.

Required Attributes

  • None.

Optional Attributes

Example

<ul>
	<li>First List Item</li>
	<li>Second List Item</li>
	<li>Third List Item</li>
</ul>

Changes in HTML5

  • None.

Related Tags