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

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

Hi,

Can someone please provide me some wisdom on what needs to be done on "HTML List" challenge task 6 of 6. I have been stuck on this task for two days ^_^.

4 Answers

Hi Jonathan,

how far have you come yet?

your code should look something like this:

<ul>
    <li>Shapes
       <ol>
          <li>Square</li>
          <li>Circle</li>
      </ol>
  </li>
<li>Colors</li>

</ul>

The new list has to be inside the <li> tag of Shapes. Then, you just create a new ordered list with list elements and close them. You just have to remember, like I said, to put the new list INSIDE the <li> tag of the current element.

Hope it helps

What's the link to the challenge?

Hey Mario,

Excellent response! Thank you so much, thumbs up woo! I finally was able to identify my small error in judgement that was keeping me from progressing. Thank you again Mario! Very helpful reply thank you.

*My error was found in the <ol></ol> tags not being formatted properly.

I'm glad that I could help you! And thank you too Jonathan :-)