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

Conrad Cortes
Conrad Cortes
8,418 Points

html list help

I am on the code challenge for html lists and its asking me to make an ordered list with the list items being stop, drop, and roll. I have done that and the preview is showing it how it should be, but when I click the check, it tells me to put "stop" as my first list item... This is my code

<ol> <li> stop </li> <li> drop </li> <li>roll</li> </ol>

3 Answers

Paolo Scamardella
Paolo Scamardella
24,828 Points

I just did the code challenge, and the code should be html <ol><li>Stop</li><li>Drop</li><li>Roll</li></ol> and it worked for me. I need to see your code.

J Scott Erickson
J Scott Erickson
11,883 Points
<ol>
  <li>Stop</li>
  <li>Drop</li>
  <li>Roll</li>
</ol>
Conrad Cortes
Conrad Cortes
8,418 Points

Hey guys, thanks a lot for the help! I copied and pasted my code into my question but it didn't show up for some reason.. But anyways, the code I was using in the first place was the same as yalls but I copied Paolo's and it worked! So thanks again!