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!
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

Michael Hampshire
12,206 PointsAdd a nested ordered list to the "Shapes" list item. Help
I cant figure out why im getting an error. The error says "Try adding the ordered list inside the list item Shapes". Heres what I have:
<ul>
<li>Shapes</li>
<ol>
<li>Square</li>
<li>Circle</li>
<li>Triangle</li>
</ol>
<li>Colors</li>
</ul>
PS: ive never been stuck yet during this whole deep dive. Its probably something im over thinking but any advice/help would be awesome! thanks!
10 Answers

Mike Morales
19,833 PointsIt's not nested inside of your shapes lists. And yes you are missing something?

Mike Morales
19,833 PointsMichael -
You're forgetting to nest your ordered lists inside of your shapes lists.

Michael Hampshire
12,206 PointsI just tested this in notepad and firefox and it worked just fine....

Michael Hampshire
12,206 PointsIsn't it already nested inside my shapes list? I think I'm missing something ha

Michael Hampshire
12,206 PointsOK! Got it. I see what you were saying now. Thanks for the help! Over thought it ha

Mike Morales
19,833 PointsGlad, I could help! Keep up the good work, man!

Matthew Fisher
632 Points('''html <ul> <li>Shapes</li> <ol> <li>Square</li> <li>Circle</li> <li>Triangle</li> </ol> <li>Colors</li> </ul>''') Im having the same issue. Any help wold be appreciated.Thanks

Michael Hampshire
12,206 PointsI wasn't nesting it inside of shapes. Shoild be something like this:
<ul> <li> Shapes <ol> <li> Circle </li> </ol> </li> </ul>

Matthew Fisher
632 PointsI get it now. Thanks

Mike Morales
19,833 PointsI'm glad you figured it out.