Radio Buttons and label Tag placement

Can someone help me out with the label part of radio buttons. I have half the code complete except that I’m not sure what it means by " Each of your label elements should have a closing tag. Can someone take a look at my tags and perhaps give me a hint or try to explain where I went wrong. All replies are appreciated big time.

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">
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
<label>
<label for="indoor">
  <input id="indoor" type="radio" name="indoor-outdoor"> Indoor
  </label>
  <label>
  <label for="outdoor">
    <input id="outdoor" type="radio"
name="indoor-outdoor"> Outdoor
  </label>
</form>
</main>

Your browser information:

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

Challenge: Create a Set of Radio Buttons

Link to the challenge:

Welcome, Ken.

Within this code, there are 4 opening label tags, and only 2 closing label tags:

<label>
<label for="indoor">
  <input id="indoor" type="radio" name="indoor-outdoor"> Indoor
  </label>
  <label>
  <label for="outdoor">
    <input id="outdoor" type="radio"
name="indoor-outdoor"> Outdoor
  </label>

Opening: <label>
Closing: </label>

Hope this helps

1 Like

Thanks so much Sky! I went back to read over my code carefully and was able to find where I had extra tags.