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 trialFrancisco Sandoval
5,657 PointsOrder list.
Add the following items to the order list "Stop", "Drop" and "Roll". I am stuck in this question, I reviewed the video x 3 and it doesn't talk about this.
8 Answers
reuben east
2,403 Points''' <ol> <li>Stop</li> <li>Drop</li> <li>Roll</li> </ol> ''' If this prints the code this is what the ordered list looks like
Callum King
6,470 PointsThose are the list items <li> that you need to add individually to your ordered list, like below.
- Stop
- Drop
- Roll
Dennis Castillo
16,018 Pointswatch again the video and focus/listen about order list tag and list item tag.... Good luck... :)
reuben east
2,403 PointsOne more time '''html <p> <ol> <li>Stop</li> <li>Drop</li> <li>Roll</li> </ol> </p> Maybe it will work this time. <ol> and </ol> means an ordered list -- the list item go between them <li>item</li>
reuben east
2,403 PointsSorry i don't know how to get this thing to print code Here is an address to look at http://www.w3schools.com/html/html_lists.asp
reuben east
2,403 Points'''html
- Stop
- Drop
- Roll ''' Sorry but I have to try one more time
Francisco Sandoval
5,657 PointsHere is what I Got. The first item is to create an order list: <ol> <li>one</li> <li>two</li> <li>three</li> </ol>
Then after submitting this the next question is:Add the following items to the order list "Stop", "Drop" and "Roll" I did: <li>one</li> <li>two</li> <li>three</li> <li>stop</li> <li>drop</li> <li>roll</li> </ol> The reply was stop should be the first item: Then I did the following: <ol> <li>stop</li> <li>drop</li> <li>roll</li> </ol>
Same reply.
Thank you guys.
Francisco Sandoval
5,657 Pointsoops, I didn't know we cannot write code in this forum.