Hi, I'm stuck on step 47

Tell us what’s happening:
Describe your issue in detail here.

Getting this error
“Both radio buttons should have a name attribute. Check that there is a space after the opening tag’s name and/or there are spaces before all attribute names.”

  **Your code so far**
  

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

you need one single input element with all the attributes, not two input elements

I see it now, fixed it thank you.
:grinning:

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