Help with "Create a Set of Radio Buttons" challenge

Tell us what’s happening: what am i doing wrong
Submit

<input id="indoor type= radio name=“indoor-outdoor”

<input id=“outdoor” type= radio name=“indoor-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="/submit-cat-photo">
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
<label for="indoor">
<input id="indoor type= radio name="indoor-outdoor"
</label>
<label for="outdoor">
<input id="outdoor" type= radio name="indoor-outdoor"
</label>
</form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36.

Challenge: Create a Set of Radio Buttons

Link to the challenge:

Please use meaningful titles for your posts.

Your radio buttons do not match the example and have some syntax issues.

Example:

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

Yours:

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

@nechemiakatz18 to be more specific, attributes are key-value pairs, almost always in the form of [key-name]=“value-string”. Strings are always enclosed with double-quotes in HTML.

Examples:
class=“main”
for=“indoor”
type=“text”

Now take a careful look at you input definitions.

I updated your title.