I dont understand the create a set of buttons

Tell us what’s happening:
i don’t understand the task. it says to create a set of radio buttons

// running tests Each of your two radio button elements should be nested in its own label element. Each of your label elements should have a closing tag. Each of your radio button elements should be added within the form tag. // tests completed

Your code so far
this is my code

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

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

Your browser information:

Challenge: Create a Set of Radio Buttons

Your post needs formatting so it can be clear to someone who wants to help.

according the test requirements, from what i can gather, your <input type='radio'> elements(buttons) should be nested inside <label>elements, but currently they are separated(outside).

The required syntax should be <label><input type='radio'></label>(with the additional properties for every element)

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.