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 trialchristina myrie
2,621 Pointshow do you do the second part of the objective
when they ask me to add stop,drop and roll to the list it keeps saying stop should be the first one and i put that
4 Answers
Wayne Priestley
19,579 PointsHi Christina,
It's a simple typo I'm afraid:
<ol>
<li>Stop</li>
<li>Drop</li>
<li>Roll</li>
</ol>
Capital S, D and R
Gloria Dwomoh
13,116 PointsCan you show us your html ?
christina myrie
2,621 Pointshow would i show you that
Gloria Dwomoh
13,116 PointsCopy paste what you have done so far or take a picture of it ...how ever you want. Just show us your code so we can see where the problem lies at :)
Gerard Weppler
4,357 PointsCan you please upload the code so I can try to help you?
christina myrie
2,621 Pointshow wold i show that
Ken Alger
Treehouse TeacherChristina;
If you look below the area in which you type your response there is a link to the Markdown Cheatsheet which explains how to post code.
That being said, it sounds like you are on Task 2 of this challenge since you are asking about adding Stop, Drop, and Roll to the list, correct?
The challenge asks us to, add the following list items to the ordered list: "Stop", "Drop", and "Roll". So inside the ordered list <ol></ol>
tags we created in Task 1, we need to add the aforementioned list items. So our code would look something like:
<ol>
<li>Stop</li>
<li>Drop</li>
<li>Roll</li>
</ol>
The ordered list elements tells the browser to number the list items that are within the confines of the ordered list tags. As you proceed through the challenge be sure to check the preview to see how ordered and unordered lists behave in the browser.
Hope it helps and happy coding,
Ken
christina myrie
2,621 Pointsi've done that but it keeps saying Bummer! The first list item should be "Stop"
christina myrie
2,621 Points<ol>
<li>stop</li>
<li>drop</li>
<li>roll</li>
</ol>
this is what i've done so far and it keeps saying its wrong
Wayne Priestley
19,579 PointsWayne Priestley
19,579 PointsHere is a link to explain how to use Markdown to post your code How to post code