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

Nested list question

Hi,

I'm on the last question of the HTML list items code challenge. The last question is asking me to create an ordered nested list under "Shapes" and add the words "Square" and "Circle."

Here is my code: http://cdpn.io/xFjzc

Would you let me know how I can correct it? Thank you in advance! =)

1 Answer

Jah Chaisang
Jah Chaisang
7,157 Points

an ordered list started with <ol>. Then the list items inside go like this <li>List Item</li>. Once all list items are there, you close it with </ol>.

A nested list is nothing special. Just place an ordered list under your list item. So it'd be something like...

<ul>
<li>Gender
<ol>
<li>Male</li>
<li>Female</li>
</ol>
</li>
<li>Age</li>
</ul>

Thank you =)