List: Group (Unordered)

ClickUp Ticket


Mozilla Description of Component

The <ul> HTML element represents an unordered list of items, typically rendered as a bulleted list.

Reference link

Deprecated Attributes for <ul>


Component Example


Code Snippets

HTML

                
<ul>
    <li>List Item</li>
    <li>List Item</li>
    <li>List Item</li>
    <li>List Item
        <ul>
            <li>List Item</li>
            <li>List Item</li>
            <li>List Item</li>
        </ul>
    </li>
    <li>List Item</li>
    <li>List Item</li>
</ul>
                
            

History Tracking

  1. Code orginally created by Kelly; Approved by Steen on Nov 23,2023