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 trialedward velasco
Courses Plus Student 4,998 PointsAnyone Could Help Me On How To Do This "Add a nested ordered list to the "Shapes" list item."
Hi there,
I think I need help to figure out exactly on how to code this task description "Add a nested ordered list to the "Shapes" list item."
Any help would be appreciated
Thanks Edward
2 Answers
Brandan Booth
9,321 Pointsyou need to nest the <ol> between one of the list items. like in the example below.
<!doctype html>
<html lang="en"> <head> <meta chrset="utf-8"> <title>Object Class</title> </head>
<body> <ol> <li>Coffee</li> <ol> <li>hot</li> <li>Cold</li> </ol> <li>Tea</li> <li>Milk</li> </ol> </body> </html>
edward velasco
Courses Plus Student 4,998 PointsHi Brandan I sort it out already by the way I really appreciate your help. Thanks
marsha spell
Courses Plus Student 5,555 Pointshey i'm having the same problem could you show me how you did it?
Brandan Booth
9,321 PointsBrandan Booth
9,321 Pointsyou need to nest the <ol> between one of the list items. like in the example below.
<!doctype html>
<html lang="en"> <head> <meta chrset="utf-8"> <title>Object Class</title> </head>
<body> <ol> <li>Coffee</li> <ol> <li>hot</li> <li>Cold</li> </ol> <li>Tea</li> <li>Milk</li> </ol> </body> </html>