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 trialKathleen Fogle
1,015 PointsThe instructions say to add "stop" "drop" and "roll" to the list. Ordered? Unordered? Nested? Neither works.
I am having trouble with this one. Are they supposed to be nested? ordered? or unordered? I can not get any of them to work.
<!DOCTYPE html>
<html>
<head>
<title>HTML Lists Challenge</title>
</head>
<body>
<h1>HTML Lists Challenge</h1>
<!-- Write your code below -->
<ul>
<li>stop</li>
<li>drop</li>
<li>roll</li>
</ul>
<!-- Write your code below -->
</body>
</html>
2 Answers
Jason Anders
Treehouse Moderator 145,860 PointsHi Kathleen. Welcome to Treehouse.
The first part of the challenge asks you to create an "Ordered List", so it will be into that, and you'll need to change the <ul> to <ol>.
The second part of the challenge asks you to add "Stop," "Drop," and "Roll." The challenges are very specific and very picky. If you notice, each word is capitalized, and the words you added are not. Just change them to be capitalized, and you'll be good to go.
Keep Coding!
Will R
505 PointsI found that it should be ordered, so I used this:
<ol>
<li>Stop</li>
<li>Drop</li>
<li>Roll</li>
</ol>
Hope this helps.