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 trialdtap
3,496 PointsAdd a nested ordered list to the "Shapes" item
Has anyone completed this? I think I'm just putting it in the wrong spot. I've tried before, after, in between, and am still getting the error message
3 Answers
dtap
3,496 PointsSorry for the bother. I got it. Some of the questions seem so easy a bit tricky!
Keith Kelly
21,326 PointsSo what they are looking for is a new ordered list inside the shapes list element. The code would look something like this:
<ul>
<li>Shapes
<ol></ol>
</li>
<li>Colors</li>
</ul>
dtap
3,496 PointsThanks Keith... much appreciated!