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 Lists HTML Lists

Rodolfo Urbina
Rodolfo Urbina
3,705 Points

Challenge Error - Basic HTML

The code challenge says "Add a nested ordered list to the "Shapes" list item." This is the code I have but it keeps saying "Bummer! Try adding the ordered list inside the list item "Shapes".

Am I doing something wrong?

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

1 Answer

Hi Rodolfo,

You added the ordered list after the "Shapes" item. You didn't nest it inside. You want to close off your "Shapes" list item after the ordered list.

You're welcome.