Been stuck for 30 minutes and seriously need help

The only “X” marked step was the Your radio buttons should be given the name attribute of indoor-outdoor .

Pretty much all my steps are good. Tnx!

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 type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>

<form>
<label for="indoor">
<input id="indoors" input type="radio" input name=indoor-outdoor>indoor
</label>
</form>

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

</main>

I believe you are missing some "s around the first indoor-outdoor.

You have 3 form elements and you are using the input element type multiple times on the same element. Also, it should indoor-outdoor not outdoor-indoor.

It might be easier to just reset the code.

Edit: the challenge

1 Like

It worked, thank you so much!