<ul>: The HTML Unordered List Element

1 Description

The HTML <ul> element is used whenever you want to create a bullet point list. The sister element to the <ul> element is the <ol> element which is used to created numbered lists.

See Also

The <ol> element.

2 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>

This document was last updated: