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 trialWilliam Sam
Courses Plus Student 5,838 Pointshelp me solve this challenge
Add three items to an ordered list inside of your div
4 Answers
Ali M Malik
33,293 PointsPlease include the code so we can see the problem you are having. But from what you're saying. Inside your div you should create an ordered list <ol> with three list items <li> in it.
Roger Knappick Jr
Courses Plus Student 2,095 Points<div> <ol> <li>item</li> <li>item</li> <li>item</li> <ol/> </div>
Roger Knappick Jr
Courses Plus Student 2,095 Pointsmy bad. wrote the HTML in comment section. didn't know it wouldn't include it
Luke Bearden
15,597 PointsThe HTML for an ordered list should look something like this:
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>