Create a Set of Checkboxes PLEASE HELP

Tell us what’s happening:
Hello, I need help to complete this challenge.

It says that I failed in the second task. "Each of your three checkbox elements should be nested in its own label element." but I don´t know how do it. What am i doing wrong?

Your code so far


<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="/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><br>
    <input type="text" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
    <label 
        for="personality"><br><input id="personality 1"             type="checkbox" name="personality">Personality 1
      </label>
      <label 
        for="personality"><input id="personality 2"                 type="checkbox" name="personality">Personality 2
      </label>
      <label 
        for="personality"><input id="personality 3"                 type="checkbox" name="personality">Personality 3
      </label>
  </form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/create-a-set-of-checkboxes

I am not completely sure, but I think you have to have add a value=
to whatever your ID is.
So, like
label
for=“personality”>Personality 2

Something like that, and I do not think that you should have spaces in the ID’s.

The id’s value can not contain white space, i think.

I did not get that of the value= . And no problem with ID’s and the whitespace

You have a wanderer <br/> :open_mouth:

remove the br tag from your first label element

Hi, I’m still getting stucked in this challenge for past 2 days

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Things cats love:

  • cat nip
  • laser pointers
  • lasagna

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
Indoor Outdoor
Submit <input id="personality 1" type="checkbox" name="personality>"personality 1 <input id="personality 2" type="checkbox" name="personality>"personality 2 <input id="personality 3" type="checkbox" name="personality>"personality 3

can someone help me what’s wrong in it and what to do ?

1 Like

this is the correct answer :grinning:

1 Like