Create a Set of Checkboxes. Please help!

Hello! I need help with this challenge, I dont know what i´m doing wrong, it keeps saying: " Each of your three checkbox elements should be nested in its own label element. Your checkboxes should be given the name attribute of personality"

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>
<lable for="loving"><input id="loving" type="checkbox" name="personality">Loving</lable>
<lable for="shy"><input id="shy" type="checkbox" name="personality">Shy</lable>
<lable for="lazy"><input id="lazy" type="checkbox" name="personality">Lazy</lable>
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:75.0) Gecko/20100101 Firefox/75.0.

Challenge: Create a Set of Checkboxes

Link to the challenge:

Hey @daiana.romaris and welcome to FCC,

  • The challenge said to Nest the checkbox elements inside their own <label>. You did a little typo there <lable> Remember, to use the proper english spelling.

Thanks!! I was so foucused reviewing the rest of the code that i didn´t see that mistake, thank you :slight_smile:

1 Like