Am stuck here please what can I do

Tell us what’s happening:
Describe your issue in detail here.

  **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://www.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://www.freecatphotoapp.com/submit-cat-photo">
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
  <label for="Indoo">
    <input id="indoor" type="radio" name"indoor-outdoor">indoor</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 (Linux; U; Android 7.0; TECNO WX4 Pro Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/85.0.4183.127 Mobile Safari/537.36 OPR/50.0.2254.149182

Challenge: Create a Set of Radio Buttons

Link to the challenge:

There is a typo in this line:

<input id="indoor" type="radio" name"indoor-outdoor">

Hello, do you have a question? if so describe it. Describing problems is really important when it comes to being a developer.

Like @exari There’s a typo in line 25 in the name attribute, it’s missing an equal sign.
When I correct that the test passes.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.