Create a Set of Radio Buttons help needed

Tell us what’s happening:
i don’t have a clue what is wrong with this 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 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0.3 Safari/604.5.6.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/create-a-set-of-radio-buttons

It looks like you forgot some = signs :). Try to find them, and reply if you need more help.

dad is telling me to get off but i wanna finish this last task before bed help would be great

hello? u still there? sorry for being a pest btw i just rlly need to hurry up

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

You are missing equals characters in these lines of code.

Spoiler:

Add equals signs between “type “radio”” so that it becomes “type=“radio”” (same with “name”)

I’d suggest that it might be wise to take a break and come back tomorrow if you’re still stuck.