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 a nested ordered list to the "Shapes" list item.

issues with adding an nested ordered list in the html list challenge

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

5 Answers

Nesting means adding a element inside another element's opening and closing tags, like what you did by adding a <li> inside the <ul>. the same principle works for adding the tag <ol> inside the <li> tag.

Dontez Hinkle & Elliott Frazier - If you want your code to show up in the forum make sure you check out this post on How to type code in the forum

James Barnett cool. btw how do I delete a post? I've tried doing so in the past but I couldn't figure it out.

-

Elliott Frazier - You cannot delete an individual post. Moderators and Staff members can delete an entire thread for you though.