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

code challenge: HTML lists

I have no idea what I'm doing wrong.... I have to create an ordered list (which i got right) and then put 3 list items inside the ordered list. What on EARTH am I not getting here?!

[IMG]http://i58.tinypic.com/2iufjnb.png[/IMG]

3 Answers

You didn't capitalize the words:

<ol>
      <li>Stop</li>
      <li>Drop</li>
      <li>Roll</li>
</ol>

Hi Mate,

Please use Caps lock:

<ol>
 <li>Stop</li>
 <li>Drop</li>
 <li>Roll</li>
 </ol>

Wow... feel like an idiot but thank you both so much for your help! Don't know how I couldn't figure that one out. -_-

Hi Andrew,

No problem! it's case sensetive that's all. Good luck!

It happens, no worries.