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 trialAaron Feltman
8,434 PointsAdding an ordered nested list under the Shapes list
I'm having an issue creating the ordered nested list under the Shapes list. my code is: <ul> <li>Shapes</li> <ol></ol> <li>Colors<li> </ul>
I am a beginner at this so any help is greatly appreciated.
2 Answers
Christian Frick
14,586 PointsTry this
<li>Shapes
<ol>
<li>List Item 1</li>
<li>List Item 2</li>
</ol>
</li>
Aaron Feltman
8,434 PointsThanks Christian, that worked perfect.
Christian Frick
14,586 Pointsno problem :)