HTML Radio Buttons

Tell us what’s happening: I’m having trouble with radio elements. I think my code is correct b ut I’m getting an error message that says "One of you radio buttons should have label “Indoor” and one of your radio elements should have label “Outdoor.”

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>
  <label for "indoor">
      <input id="indoor" type="radio" name="indoor-outdoor"></label>
  <label for "outdoor">
      <input id="outdoor" type="radio" name="indoor-outdoor"></label>
  <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.88 Safari/537.36.

Challenge: Create a Set of Radio Buttons

Link to the challenge:

I believe it’s looking for the actual text content of “Indoor” and “Outdoor” in their respective locations.

1 Like

@j.ingolfsland have a look in these lines and add the context. You can check what’s happening in the testtext below. And as always have a look on your spelling. If, as you mentioned, the word “Indoor” should be added, the capital “I” is important to pass.

Hi,
take a closer look to the opening tag of your label. There is something missing between “for” and “indoor”. You can see what is missing, if you take a look at the other attributes in the other tags.