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 trialLarry Gregory
656 Pointsim not understanding on how to do this part
not sure where to place the the 3 items
<!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
23,289 PointsHey Larry,
You have to place your ol tags inside an ul tag!
Tri Pham
18,671 PointsAlso you probability should have used <li> elements (stands for list item) for the inside elements and not <ol> (stands for ordered lists).
Larry Gregory
656 PointsLarry Gregory
656 Pointsul tag goes with the 3 items right?