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

Code won't pass the quiz

The code won't pass for a quiz but im pretty sure its right:

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

    <ul>
      <li>Shapes</li>
        <ol>
          <li>Stop</li>
          <li>Drop</li>
          <li>Roll</li>
            </ol>
      <li>Colors</li>
    </ul>

this is for the section on HTML lists in the deep down section, challenge task 5 of 6 - Add a nested ordered list to the "Shapes" list item.

2 Answers

I'm not sure the exact code that will pass it, but you put at the bottom "Add a nested ordered list to the "Shapes" list item." and by your code you are closing off the "shapes" list item before you are adding the nested ordered list in there. That might be where your error is.

Thanks for the help.