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 trial

HTML HTML Lists HTML Lists

Andrew Escher
Andrew Escher
1,301 Points

What am I doing wrong?

<body> <ol> <li>Stop</li> <li>Drop</li> <li>Roll</li> </ol> <ul> <li>Shapes</li> <ol> <li></li> </ol> <li>Colors</li> </ul>

Michael Hulet
Michael Hulet
47,912 Points

Could you please check the Markdown Cheatsheet at the bottom of the page (under the "Add an Answer" box) for instructions on how to post your code, then try posting it again?

1 Answer

Corey Montgomery
Corey Montgomery
18,468 Points

I just went through the challenge again and found what might be hanging you up. Make sure to capitalize the 'list items' such as "Stop", "Drop" "Shapes"... etc. If they are listed in lowercase it wont accept. Since we can't see your code, I will paste below what it should look like code wise. This should be written after the comment line telling you to write it below. This should also give you enough info to finish the challenge. If this doesn't help, I would suggest putting your code in here like Michael said in order to see what is going wrong.

<ol>
    <li>Stop</li>
    <li>Drop</li>
    <li>Roll</li>
 </ol>
<ul>
   <li></li>
</ul>