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

Code Challenge no longer working

I have reached the Deep Dive videos on HTML and I am at the "Lists" section; code challenge #4 keep saying that its no longer passing....Can someone please explain what that means? I cannot pass that challenge because of that error...what to do?

3 Answers

Roberto Alicata
PLUS
Roberto Alicata
Courses Plus Student 39,959 Points

Probably you changed something in the last challenge that invalid a previous challenge.

Actually no, I added the codes that they asked for in the 5th challenge, they said the code is no longer working and gave the option of returning to the previous challenge....The 1st- 4th challenge passed with a breeze...and they were all correct, just wrote what they asked and nothing more...Cant figure out what to do next

Roberto Alicata
Roberto Alicata
Courses Plus Student 39,959 Points

I passed all the challenges with this code:

<!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
        <ol>
          <li>Square</li>
          <li>Circle</li>
        </ol>
      </li>
      <li>Colors</li>
   </ul>    


  </body>
</html>

Got it..I see where I went wrong, thanks a million...I finally passed the code challenge...Thanks again