Correct way to make a multi-level list?

They have: 140 posts

Joined: Jan 2003

Which is the CORRECT way to have multiple levels deep of listings:

<ul>
    <li>Menu item</li>
    <ul>
        <li>List Item</li>
        <li>List item 2</li>
    </ul>
</ul>
'

or:

<ul>
    <li>Menu item
        <ul>
            <li>List Item</li>
            <li>List item 2</li>
        </ul>
    </li>
</ul>
'

Thanks

SonicMailer Pro
The best mailing list manager has just gotten better!
Click here for a full list of features!

He has: 1,380 posts

Joined: Feb 2002

The second one is the correct way

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.