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 trialbreckconley
1,470 Pointsnested lists
how does this work?
<!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</li>
<ol> <li>circles</li>
<li> triangles</li></ol>
<li> Colors</li>
</ul>
</body>
</html>
2 Answers
Luke Pettway
16,593 Pointsbreckconley you were actually very very close to solving it correctly.
You need to nest the <ol> inside of the <li> for shapes, it will look like this:
<ul>
<li>Shapes
<ol>
<li>Square</li>
<li>Circle</li>
</ol>
</li>
<li>Colors</li>
</ul>
Nesting can get a little messy/confusing inside of list items because of the amount of tags in such a small section of code.
Melissa Austin
3,383 PointsAs Luke Pettway says nested lists can be confusing. Here is a live example on CodePen and further explaination at Mozilla.
breckconley
1,470 Pointsbreckconley
1,470 Pointsnot working <!DOCTYPE html> <html> <head> <title>HTML Lists Challenge</title> </head> <body>
</body> </html>
Luke Pettway
16,593 PointsLuke Pettway
16,593 PointsTake the closing li tag after shapes </li> and place it after the closing ol tag </ol> . The entire <ol></ol> needs to be inside the <li></li> tags.