Warning:
This wiki has been archived and is now read-only.

Elements/ul

From HTML Wiki
Jump to: navigation, search

<ul>

The <ul> element represents the unordered list.

Point

  • The items of the list are the li element child nodes of the ul element.


HTML Attributes

See global attributes.


Examples

Example A

[try it]

<ul>
  <li>sample1</li>
  <li>sample2</li>
  <li>sample3</li>
</ul>


HTML Reference

The HTML5 specification defines the <ul> element in 4.5.6 The ul element.