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 trial

HTML

Anyone 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

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

2 Answers

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

Hi Brandan I sort it out already by the way I really appreciate your help. Thanks

marsha spell
PLUS
marsha spell
Courses Plus Student 5,555 Points

hey i'm having the same problem could you show me how you did it?