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

Mark Collins
Mark Collins
2,955 Points

HTML Lesson

I have succesfully written an ordered list and next I am to add three items to the list. But I don't really understand the question. I have tried to hard code an unordered list and I have inserted the lines for the three items all to no avail. Can I get a pointer as to what the test is actually after?

index.html
<!DOCTYPE html>
<html>
  <head>
    <title>HTML Lists Challenge</title>
  </head>
  <body>

    <h1>HTML Lists Challenge</h1>

    <!-- Write your code below -->
<ol>
  <li>First one</li>
  <li>Second one</li>
  <li>Third one</li>
</ol>

  </body>
</html>

2 Answers

Mark Collins
Mark Collins
2,955 Points

Ah! Thankyou very much!

Tobias Helmrich
Tobias Helmrich
31,602 Points

Hey Mark,

your code is perfectly fine! However the content of the three list items should be "Stop", "Drop" and "Roll" instead of "First one", "Second one" and "Third one".

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