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 trialandrewg
7,157 Pointscode 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?!
3 Answers
Vlatko .
2,526 PointsYou didn't capitalize the words:
<ol>
<li>Stop</li>
<li>Drop</li>
<li>Roll</li>
</ol>
Nino Merdzanovic
Courses Plus Student 15,758 PointsHi Mate,
Please use Caps lock:
<ol>
<li>Stop</li>
<li>Drop</li>
<li>Roll</li>
</ol>
andrewg
7,157 PointsWow... feel like an idiot but thank you both so much for your help! Don't know how I couldn't figure that one out. -_-
Nino Merdzanovic
Courses Plus Student 15,758 PointsHi Andrew,
No problem! it's case sensetive that's all. Good luck!
Vlatko .
2,526 PointsIt happens, no worries.