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 trialRachel Falzon
1,539 PointsTask 5 of 6
I don't understand what I'm doing wrong on this task. I've added the nested order list to the list item "shapes" and have done it just like the video. Can you please help in advising what I'm doing wrong?
<ol>
<li>Stop</li>
<li>Drop</li>
<li>Roll</li>
</ol>
<ul>
<li>Shapes</li>
<ol>
<li>Circle</li>
<li>Square</li>
</ol>
<li>Colors</li>
</ul>
2 Answers
Stone Preston
42,016 Pointsyou need a list INSIDE the list item.
<ul>
<li>Shapes
<ol>
</ol>
</li>
<li>Colors</li>
</ul>
See this for more information on nesting lists
Rachel Falzon
1,539 PointsThank you Stone! That helped get me through the task!
Stone Preston
42,016 Pointsno problem