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

Definition Lists Code Challenge

I don't understand why this isn't the correct way to add an ordered list to the "Shapes" item.

<code> <!DOCTYPE html> <html> <head> <title>HTML Lists Challenge</title> </head> <body>

<h1>HTML Lists Challenge</h1>

<!-- Write your code below -->
<ol>
  <li>Stop</li>
  <li>Drop</li>
  <li>Roll</li>
</ol>
<ul>
  <li>Shapes</li>
    <ol>
      <li>Square</li>
      <li>Round</li>
      <li>Oval</li>
    </ol>
  <li>Colors</li>      
</ul>

</body> </html> </code>

1 Answer

Hi Richard,

The ordered list has to be inside the "Shapes" list item, not after it. You want to close off the "Shapes" list item after the ordered list.

Oh, my gosh! I had been working in SublimeText2, and it must have ignored my mistake. The browser rendered as though I had coded it correctly! Is that possible?

Generally, browsers are pretty forgiving with invalid html. You should still strive to write valid html though and not depend on the browser to fix invalid html.