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

matteo boni
matteo boni
5,087 Points

help

Add the following list items to the ordered list: "Stop", "Drop", and "Roll".

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

    <h1>HTML Lists Challenge</h1>
<ol>  
  <li>stop</li>
  <li>drop</li>
  <li>roll</li>
    </ol>



  </body>
</html>

3 Answers

Hi Mateo,

The question will be case specific on the "Stop", "Drop" and "Roll" if you get my hint :)

Hope this helps Craig

Anthony Babich
Anthony Babich
5,505 Points

Hiya. I just went through the course myself and found out what you did wrong.

You just need to capitalize the Stop, Drop, and Roll. It seems to be case sensitive.

Anthony Babich
Anthony Babich
5,505 Points

Adding to that answer, I've been doing this a long time and if you think you're having trouble or getting stuck... It's usually something silly like missing 1 tiny bracket or something (having to capitalize the letters). Good luck!

craig nice one