Problem unsolved with Create a Set of Radio Buttons

Tell us what’s happening:
hey guys
I’m confused about how to create a set of radio buttons, and I don’t know how to do this task. could anyone show me a correct way of doing it? thank you so much!!

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"</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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36.

Challenge: Create a Set of Radio Buttons

Link to the challenge:

adding information towards my question:
after running the test, and it keeps showing:
1.Each of your two radio button elements should be nested in its own label element.
2. One of your radio buttons should have the label indoor .
3. One of your radio buttons should have the label outdoor .

hey @kemocougar you are missing closing backets > in end of both the input tags. And you have not given any text to both the label tags. Add the text indoor and outdoor to first and second label respectively.

1 Like