Confused about checkbox lesson

Tell us what’s happening:
I have done eveything exactly as far as I can tell. But it still tells me that eack checkbox must be nested in it’s own lable element and given the name Personality (of which I believe they are.). Why is it not passing? Thank you for your help and time. - James

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 ="Loving">
      <input id="loving" type="checkbox" name ="personality"> Loving 
      </label>
   <lable for ="cute">
     <input id="cute"     type="checkbox" name ="personality">Cute
     </label>
     <label for="fuzzy">
       <input id="fuzzy" type="checkbox" name ="personality">Fuzzy
       </label>  
  <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>
</form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36.

Challenge: Create a Set of Checkboxes

Link to the challenge:

Hello there,

You have a few typos in your code:

  1. <label for ="Loving">
  2. <lable for ="cute">

Also, please note that it is not best practice to put a space between HTML attributes and their values, and to have more than one space between attributes is odd.

I have moved this into a more suitable sub-forum.

Hope this helps