THIS what i done so far everything seems right
but one error says that : Each of your two radio button elements should be nested in its own label element.
and i just dont understand
I can give you a rough idea of what this means, but due to your codes current formatting it’s hard to tell what exactly you’re doing wrong.
To format your code create two rows of three backticks and put all of your code between them:
```
your code here
```
They are asking you to put your <input> element inside of a <label> element right? Remember when they taught you to nest <li>s inside of either a <ul> or <ol>? It’s the same idea here.
<label for="input_name"> A Detailed Label
<input type="button" name="input_name">
</label>
An extra point is that with the use of the for attribute, you don’t actually need to nest the element.
<label for="input_name"> A Detailed Label </label>
<input type="button" name="input_name">
Going by your post, seems like you have used the label tag once for both the radios. You need to use it twice for for both indoor and outdoor separately.
The label tag helps you click on the desired input without clicking exactly on the radios with precision, meaning, you can click on the words and select the options.
Also, as @8-bitgaming mentions, if you use the for attribute inside your label you wont need to nest your element, hence saving you few keystrokes.