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 trialElias Adams
4,263 PointsSomething is wrong do we have to have a unordered list and an ordered list?
so do we?
<!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>poo</li>
</ul>
</body>
</html>
2 Answers
michel rodrigues
11,727 PointsI know which challenge you're talking about. is pretty confusing but yes. you have to create an ordered list and after an unordered list with two items. and then you have to create inside a list elements if i can remember well another unordered list.
Dylan Macnab
24,861 PointsThis challenge is asking you to create two types of lists: ordered and unordered.
You'll also practice making nested lists. Like such:
<ul>
<li>List Item 1
<ol>
<li>Nested List Item 1</li>
<li>Nested List Item 2</li>
</ol>
</li>
<li>List Item 2</li>
</ul>