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

pamela guy
PLUS
pamela guy
Courses Plus Student 4,311 Points

I can't get this for some reason could someone help me out please? Thanks so much!

can't get this for some reason could someone help me out please? Thanks so much!

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

    <h1>HTML Lists Challenge</h1>

    <!-- Write your code below -->
    <ol>
    </ol>


  </body>
</html>
Andrelo Coyac
Andrelo Coyac
4,877 Points

Well you can be more specific on what youre stuck, but Im guessing you are not sure how lists work.. So after the "Write your code below" the <ol> tags appear, this stands for Ordered List, and every item you put inside the <ol> tags will be ordered by numbers... Now the way to add Items in the list is by adding the <li></li> tags for every item you want in the list it will be something like this:

<ol>

<li> Item 1</li> <li> Item 2</li> <li> Item 3</li> <li> etc</li>

</ol>

1 Answer

Thomas Buchstab
Thomas Buchstab
14,766 Points

It would help if we could know in which task you stuck. With your code you should be able to pass the first task.