justuptime.com - monitor your servers & websites

Correct way to make a multi-level list?

You are viewing this site as a guest. Join our community to get your questions answered and share knowledge. Active members may advertise and ask for a website critique.

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!

brady.k's picture

He has: 1,383 posts

Joined: Feb 2002

The second one is the correct way