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 HTML Lists HTML Lists

Arturo Espinoza
Arturo Espinoza
9,181 Points

Add the items "Square" and "Circle" to the list nested under "Shapes".

What am I doing wrong? Please help.

<ol>
 <li>Stop</li>
 <li>Drop</li>
 <li>Roll</li>
</ol>
    <ul>
  <li>Shapes
       <ol>Square</ol>
    <ol>Circle</ol>
      </li>
  <li>Colors</li>
  </ul>

3 Answers

Stone Preston
Stone Preston
42,016 Points

you almost have it. square and circle need to be list items, not lists themselves. they need to go inside an ordered list. remember that the format for a nested list. the nested list goes between the parent list tags.

<ul>Parent List
  <ol>
      <li>item 1</li>
      <li>item 2 </li>
  </ol>
</ul>
Arturo Espinoza
Arturo Espinoza
9,181 Points

Im sorry Im still not getting it.

Arturo Espinoza
Arturo Espinoza
9,181 Points

After trial and error I finally got it, I studied why I got it wrong and it all makes sense now.