You are here : htmlHTML 5ul

<ul> - HTML 5

The <ul> tag defines an unordered (bulleted) list.

Use the <ul> tag together with the <li> tag to create unordered lists.


Syntax

    <ul>             <li>Coffee</li>             <li>Tea</li>             <li>Milk</li>      </ul>


Example

    <ul>             <li>Coffee</li>             <li>Tea</li>             <li>Milk</li>      </ul>


Output / Return Value


Limitations


Alternatives / See Also


Reference