I can't pass the 47step.Somebody can help me?

Test

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

Sorry, your code does not pass. Keep trying.

Hint

Both radio buttons should still be located between opening and closing label element tags.

here “indoor” and “outdoor” both need to be two separate “entities” , so you need to have two sets of “label” and “input” for each of them :slight_smile:

you should add the name attribute to both your input elements which is:
name=""
so your code will be like this:

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

dont give them direct answer, but ‘help’ them get to it :slight_smile:

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