Problems with Radio Buttons

Hi,
I write codes and they don’t work:

image

Where is my mistake?

Thank’s for help!

Challenge: Create a Set of Radio Buttons

Link to the challenge:

1 Like

You should put the input tag inside the label tag.

@Derealizacija
Hi.
As described in the left column, I think it is necessary to put an input tag (type=“radio”) inside the label tag.

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

Thank for help it work!