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

Add a nested ordered list to the "Shapes" list item.

I am not sure what is wrong with my code here. It appears to be done the same way shown in the video.

<!-- Write your code below -->
<ul>
      <li>Shapes
        <ol>
          <li>ordered</li>
          <li>list</li>
        </ol>
      </li>
      <li>Colors</li>
</ul>
<ol>
      <li>Stop</li>
      <li>Drop</li>
      <li>Roll</li>
</ol>

2 Answers

Are you sure they want you to type Order list inside?

Jadam - To add to what Seif said, in this case (step 5 of 6) they just want you to add an empty unordered list.