Showing I'm missing two things

Tell us what’s happening:
It keeps telling me that I need each label element nested in it’s own label element and each label element needs to have a closing tag. I have looked over this over and over even reset the code. What am I not seeing?

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="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><br>

 <label for="loving"><input id="loving" type="checkbox"name="personality"> Loving</lable>
 <label for="happy"><input id="happy" type="checkbox"name="personality"> Happy</label>
 <label for="mean"><input id="mean" type="checkbox"name="personality"> Mean</label> 
  <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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36.

Challenge: Create a Set of Checkboxes

Link to the challenge:

Hi @syier80. That is not the spelling of label, is it? Third label in the form.

Try it with my code.
I hope it works.
Indoor
Outdoor

 <label for="loving"> Loving</lable><input id="loving" type="checkbox"name="personality">
 <label for="happy"> Happy</label><input id="happy" type="checkbox"name="personality">
 <label for="mean"> Mean</label><input id="mean" type="checkbox"name="personality">

bright_96_628@outlook.com

Yeah got me there! Wow!! Thank you!