Make sure each of your label elements has a closing tag.

<h2>CatPhotoApp</h2>

<main>

  <p>Click here to view more <a href="#">cat photos</a> </p>

  <a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

  <p>Things cats love:</p>

  <ul>

    <li>cat nip</li>

    <li>laser pointers</li>

    <li>lasagna</li>

  </ul>

  <p>Top 3 things cats hate:</p>

  <ol>

    <li>flea treatment</li>

    <li>thunder</li>

    <li>other cats</li>

  </ol>

  <form action="https://freecatphotoapp.com/submit-cat-photo">

    <label for="indoor"><input id="indoor" type="radio" name="indoor-outdoor"> Indoor

    </label>

    <label for="outdoor"><input id="outdoor" type="radio" name="indoor-outdoor"> Outdoor

    </label>

    <label for="loving"><input id="loving" type="checkbox" name="personality"> Loving 

    </label>

    <lable for="mean">

      <input id="mean" type="checkbox" name="personality">Mean

      </label>

    <label for="sleep">

      <input id="sleep" type="checkbox" name="personality">Sleep

      </label>   

      <label for="loving"><input id="loving" type="checkbox" name="personality"> Loving 

      </label>

    <lable for="mean">

      <input id="mean" type="checkbox" name="personality">Mean

      </label>

    <label for="sleep">

      <input id="sleep" type="checkbox" name="personality">Sleep

      </label>

    <input type="text" placeholder="cat photo URL" required>

    <button type="submit">Submit</button>

  </form>

</main>

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

The more information you give us, the more likely we are to be able to help.


I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

Hi @rajkumar18143!

When you need help with challenges it is always best to include the challenge link. I have edited your post to include the link. In the future you can use the ask for help button in the challenge.

Here is why the test is not passing.

Typo here

and typo here

When you fix those two typos the test will pass.

Hi thankyou for replay, i did not understand , what is “typo”

A typo means that you have spelled something wrong.

This is not how you spell label

Thankyou for rectifiying my mistake, i have reseted the challenge and finished sucessfully

1 Like