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

Challenge task tells me Im wrong but when I run the code in my browser it does what it tells me I did wrong correctly.

Im doing the Challenge Task 5 of 6 Add a nested ordered list to the "Shapes" list item. however it keeps telling me: Bummer! Try adding the ordered list inside the list item "Shapes" I put the code in to a html file and ran it but everything seems to work as instructed as shown in the following screens shot: https://gyazo.com/098d7e0cb337c835a8bbf2483ce4a22a can someone pls tell me whats wrong with my code thx.

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

    <h1>HTML Lists Challenge</h1>

    <!-- Write your code below -->
<ol>
  <lt>list</lt>
  <li>Stop</li>
     <li>Drop</li>
        <li>Roll</li>
    </ol>

    <ul>
      <lt>adfa</lt>
      <li>Shapes
      <ol>
  <li>list</li>
  <li>Stop</li>
     <li>Drop</li>
        <li>Roll</li>
    </ol>
      </li>
      <li>Colors</li>
    </ul>

  </body>
</html>
Rochell Hill
Rochell Hill
10,677 Points

take out the <lt> stuff. I took the challenge and did: ... <ul> <li>Shapes <ol> <li>Square</li> <li>Round</li> </ol> </li> </ul>

It looks like you copy and pasted the "stop drop and roll stuff into the nested list. I think the instructions had "square and round" in the list items for the nested lists. Also I noticed that everything was case sensitive.