Crete a set of radio buttons

Tell us what’s happening:

Please!!! help me w/ the answer of this problem!!
IM just going nuts… i need a hand!

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>
<label for="indoor">
<form action="sumit-cat">
  <label input type="radio"> name="indoor-outdoor" 
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36.

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:

 name="indoor-outdoor" 

This is not inside an html tag.


<label input type="radio">

An html tag cannot be both label and input.


You have two opening `label` tags with no corresponding closing tags.
You haven an opening `form` tag with no closing tag.
You have a `label` outside of your `form`.

I suggest resetting the code and starting fresh.