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

help please!

Add the following list items to the ordered list: "Stop", "Drop", and "Roll". I tried adding it like this <li>first item ''stop",''drop'',and''roll''.</li> I don't know what I'm doing wrong can someone show me how its done?

4 Answers

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

Remember to always include the closing tags, and to label either it's either an Ordered list <ol> or and Unordered list <ul> Hope this helps!

thanks for helping me!

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

You need to open the ordered tag "<ol>" insert your list items "<li>" (Don't forget to close them) then close your ordered tag "</ol>".

thanks tony! you helped me a lot by going in depth with it!!!

not a problem! :)