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

Thanitsak Leuangsupornpong
Thanitsak Leuangsupornpong
7,490 Points

Struck with the task 5

Can someone help me with the task 5,because I finish the OL inside List item already, but show Bummer "add the order list nested the list item" but I already did That! the OL in the list item.

index.html
<!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>
  </ol>
  <li>Colors</li>
</ul>
  </body>
</html>

1 Answer

John Steer-Fowler
PLUS
John Steer-Fowler
Courses Plus Student 11,734 Points

Hi Thanitsak,

You haven't completed what the question asks. Your ordered list needs to be 'nested' inside of the shapes list item. At the moment you have placed your ordered list in between the shapes item and the colors item.