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 trialRodolfo Urbina
3,705 PointsChallenge 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
Jason Anello
Courses Plus Student 94,610 PointsHi 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.
Rodolfo Urbina
3,705 PointsRodolfo Urbina
3,705 PointsThanks!
Jason Anello
Courses Plus Student 94,610 PointsJason Anello
Courses Plus Student 94,610 PointsYou're welcome.