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

Larry Gregory
Larry Gregory
656 Points

im not understanding on how to do this part

not sure where to place the the 3 items

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

    <h1>HTML Lists Challenge</h1>

    <!-- Write your code below -->
<ol>
  <ol>first item</ol>
  <ol>stop</ol>
  <ol>second item</ol>
  <ol>drop</ol>
  <ol>third</ol>
  <ol>roll</ol>
  <ol>Last item</ol>
<ol>

  </body>
</html>

2 Answers

Jesus Mendoza
Jesus Mendoza
23,288 Points

Hey Larry,

You have to place your ol tags inside an ul tag!

Larry Gregory
Larry Gregory
656 Points

ul tag goes with the 3 items right?

Tri Pham
Tri Pham
18,671 Points

Also you probability should have used <li> elements (stands for list item) for the inside elements and not <ol> (stands for ordered lists).