url

I. Description

The HTML <ul> element stands for 'unordered list'. The <ul> element is used whenever you want to create a bullet point list, or a list that is not numbered or marked for the user in any way.

See also the 'ordered list' (<ol>) element.

II. Examples

<!DOCTYPE html>
<html>
    <head>
        <title>Example Page</title>
    </head>
    <body>
        <h1>Example HTML Page</h1>
        <p>Below is a simple example of an unordered list.</p>
        <h2>Cars</h2>
        <ul>
            <li>Ford</li>
            <li>Lincoln</li>
            <li>GMC</li>
            <li>Tesla</li>
        </ul>
    </body>
</html>