A problem in Radio buttons HTML

can anyone help please ??

Please don’t post screenshots; please post your actual code.

If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.


It does look like you have your radio buttons outside of the form, which is probably why you are failing that test.

The closing tag of the form is before the radio buttons.

It should be after the radio buttons. Like this:

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

And please don’t copy and paste.

Please don’t write solutions, but if you do, please use spoiler tags. Thanks.

Check all over because am seeing a radio button outside the form tag