Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML

HTML Images and Lists Code Challenge

I have been stuck on the Html: lists code challenge for some time and can't seem to figure it out. The challenge is to create a nested ordered list under an unordered list item. When I preview my work it works, but when I submit it, I get the following message: Try adding the ordered list inside the list item "Shapes"

Here is a link to the challenge, I'm stuck on stage 5 of 6: http://teamtreehouse.com/library/html/lists/html-lists

Any tips would be great, Thanks!

1 Answer

Hey Sam, here's what you should have so far. It's asking for a nested ol.

    <ol>
        <li>Stop</li>
        <li>Drop</li>
        <li>Roll</li>
    </ol>

    <ul>
        <li>Shapes
            <ol></ol>
        </li>
        <li>Colors</li>
    </ul>

Thank you so much :)