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

Jack Freiley
Jack Freiley
517 Points

standstill

I always get stuck here with no reference to help with coding.

3 Answers

Dillon Patel
Dillon Patel
4,025 Points

I would love to help but clarify what exactly you're at a standstill with and maybe I'll be able to help you.

Jack Freiley
Jack Freiley
517 Points

Thank you for helping. I did find the answer for code challenge one and preceded on to code challenge 2, and am somewhat stuck again.

Dillon Patel
Dillon Patel
4,025 Points

The second code challenge instructs you to "Add the following list items to the ordered list: "Stop", "Drop", and "Roll""

To create a list item, the tag <li> is used. To create list items within (nested) in an ordered list, do the following:

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

Let me know if that works!