Help me with create a set of radio buttons

im in problem with create set of radio buttons. i did everything correctly but it sends the message of:

Give your radio buttons the name attribute of indoor-outdoor.
Each of your two radio button elements should be nested in its own label element.

Could you link to the challenge and what you have tried so far?

Give your radio buttons the name attribute of indoor-outdoor.

this suggests that one or both of your radio buttons does not contain a name attribute. syntax will be name=value, in this case the value will be indoor-outdoor. e.g. <div name="container"></div>

double check your code to ensure that both radio button elements contain a name. name’s are useful for grouping elements together

Each of your two radio button elements should be nested in its own label element.

this should be straight forward. remember that nested elements look like this…

<html>
  <body>
  </body>
<html>

so the instructions want you to nest each radio button element in its own label element.

without seeing your code it will be hard to provide more assistance

i’m having issuse with radio buttons as well.