Can't Move Forward

I’m trying to create the Indoor and Outdoor radio buttons. I’ve done everything like the example showed and it will not pass the test. Please help!!

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

Challenge: Create a Set of Radio Buttons

Link to the challenge:

What do the failing tests say? What other things have you tried?

I’ve tried everything they said and still not working. I see others are having the same issue so I guess eventually I’ll figure it out.

I’m trying to help you, but if you would rather work through it on your own, that’s fine.

Thanks for the assistance. My son, who is a bit of a computer whiz, help me figure it out. Told me if they give you an example of the code they want you to use, use it exactly as shown. It worked!

I’m glad that you got it figured out. It’s always nice to have a computer whiz in the house!
Happy coding!