SyntaxStudy
Sign Up

<li>

tag

Represents an item in a list. Must be a child of <ul>, <ol>, or <menu>.

Syntax

<li>list item</li>

Example

html
<ul>
    <li>First item</li>
    <li>Second item
        <ul>
            <li>Nested item</li>
        </ul>
    </li>
    <li>Third item</li>
</ul>