Create a Set of Checkboxes123

Tell us what’s happening:
I dont know what im 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>
    <lable for="personality"><input id="personality" type="checkbox" name="personality">personality
  </lable>
 <lable for="personality"><input id="personality" type="checkbox" name="personality">personality
 </lable>
  <lable for="personality"><input id="personality" type="checkbox" name="personality">personality
  </lable><br>
    <input type="text" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
  </form>
</main>
``

What do the failing tests say?

I can already see that you have the checkbox inputs that look exactly the same.

it says to do them the same way and to make three.

i just realized ive been misspelling “label” with " lable". thank you for responding lol

Typos are the bane of developers! Good job finding your error. Happy coding.

2 Likes

I’ve spent 15 minutes trying to figure out what is wrong and I did the exact same thing . Thank you for saying it outloud.