Closing label tag

Tell us what’s happening:
Hello folks so I am doing this exercise on fcc and below is the code i wrote for this exercise. I keep getting this result
// running tests Make sure each of your label elements has a closing tag. // tests completed

can someone please correct me as I can’t find where error is >>>>> Thanks

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></label> <br>

  <label for="caresing"><input id="caresing" type="checkbox" name="personality"> Caresing</label>

  <label for="loving"><input id="loving" type="checkbox" name="personality"> Loving</label>

  <label for="tender"><input id="tender" type="checkbox" name="personality"> Tender</label><br>



<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/79.0.3945.88 Safari/537.36.

Challenge: Create a Set of Checkboxes

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

do you have the same number of opening and closing label tags?
you are missing one opening label tag

I have all opening tags … can’t see what you mean.
Thanks

are you sure about that?

Ok, I see … that closing tag shouldn’t be there, thanks a lot you are truely magical… that solved the problem.
Diky :slightly_smiling_face::smile: