Step 24 Responsive Web Design

I got this message whem i try to send my code:

You should give the first label text one space at the front.

I tried to put a space between the text and the label, but i got the same tip. What i’m doing wrong?

 <fieldset>
         <label> Personal Account<input type="radio" /></label>
        <label> Business Account<input type="radio" /></label>
        <label> I accept the terms and conditions<input type="checkbox" required /></label>
      </fieldset>

You have put your label text before the input element the instructions requires you to put it after the input element

1 Like

he is correct if you move the text to after the input element it should help!

It worked, thanks for your help!

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