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 trialTarek Salha
Front End Web Development Techdegree Student 9,441 Pointshow to add the list items square and circle
how to add the list items square and circle
<!DOCTYPE html>
<html>
<head>
<title>HTML Lists Challenge</title>
</head>
<body>
<h1>HTML Lists Challenge</h1>
<!-- Write your code below -->
<ol>
<li>Stop</li>
<li>Drop</li>
<li>Roll</li>
</ol>
<ul>
<li>Shapes
<ol>Square</ol>
<ol>Circle</ol>
</li>
<li>Colors</li>
</ul>
</body>
</html>
2 Answers
Steven Parker
231,198 PointsA list, either ul
or ol
, should only contain list items (li
) as direct children. Both of your shape names should be inside li
tags, and they should both be inside a shared ol
element parent.
I'l bet you can get it now without an explicit code spoiler.
Abbey Tipton
16,846 PointsHey there! Your code is really close. You have:
<ul>
<li>Shapes
<ol>Square</ol>
<ol>Circle</ol>
</li>
<li>Colors</li>
</ul>
But, the ol tag is used to start a new unordered list, rather than to designate items in that list. You should start a new ol tag and then use the li tag on each list item, just like you did in your first ordered list. Like this:
<ul>
<li>Shapes
<ol>
<li>Square</li>
<li>Circle</li>
</ol>
</li>
<li>Colors</li>
</ul>
I hope that helps!