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

Task 2 Check Is Wrong

Task 2 is asking to add items to the ordered list created in task 1, but then it seems to be checking for an unordered list. When I create an unordered list then it still complains, thus not allowing to move to the next task.

2 Answers

Task 2 worked for me using this code:

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

This worked, but it was not working before... There must have been a glitch in the backend and someone fixed it.

how did you embed the picture?

Be sure you have nothing in the list item tag:

<ol>
<li></li>
</ol>

This did not work.