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

Satbir Singh
Satbir Singh
1,674 Points

unknown error message of previous task

when i pass task 2, and submitting the answer of task 3, the error is there... that

Oops! It looks like Task 2 is no longer passing.

index.html
<!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></li>
    </ul>

  </body>
</html>

3 Answers

Hassan Kamal
PLUS
Hassan Kamal
Courses Plus Student 1,879 Points

hey!!

you need to recheck your task 2 code. usually happens if you have made changes to that code while you are working on task 3.

hope it helps. :)

geoffrey
geoffrey
28,736 Points

I've justed tested it, and It passed without any trouble. Try to remove the list items between the unordered list, this way.

<!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>

    </ul>


  </body>
</html>

It has worked for me !