Give label text one space at the front

I’m supposed to give the label text one space at the front…Here is my code now
Personal Account
Business Account
I accept the terms and conditions

Personal Account

    <label> Business Account<input Business Account type="radio" /></label>

    <label> I accept the terms and conditions<input I accept the terms and conditions type="checkbox" required /></label>

  </fieldset>

Please Give us more information on your question also please give us your full current code also the link of the challenge you are doing.

I’m sorry, when I copied it, it did not copy properly…here it is.

    <label> Personal Account<input Personal Account type="radio" /></label>

    <label> Business Account<input Business Account type="radio" /></label>

    <label> I accept the terms and conditions<input I accept the terms and conditions type="checkbox" required /></label>

  </fieldset>

Challenge Link? @stepheno8

1 Like

[https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-html-forms-by-building-a-registration-form/step-24]

Ah!!! See the instruction carefully they said

Within each corresponding label element, and immediately after the input element, add a space and add the following text

They said to add it after the input element not before also

delete the text

Personal Account
Business Account
I accept the terms and conditions

in middle of the input element

This is the structure @stepheno8

        <label><input type="radio" />Add your text here</label>

        <label><input type="radio" />Add your text here</label>

        <label><input type="checkbox" required />Add your text here</label>
4 Likes

Thanks a million, this was starting to get on my nerves…

2 Likes

Ironically I cut an pasted your code directly into this, and still got this:

Test

Sorry, your code does not pass. Keep trying.

Hint

You should give the second label the text Business Account.

facts hahahahaahaha…you don’t even know the half of it

This is actually funny because they made us confused, you only eed to add 1 backspace after input and text

<label><input type="radio" /> Add your text here</label> //See there's one space

        <label><input type="radio" /> Add your text here</label>

        <label><input type="checkbox" required />Add your text here</label> //and here isn't
3 Likes

just put the text before label closing tag and make sure give one space before text.

[https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-html-forms-by-building-a-registration-form/step-27]

Personal Account Business Account I accept the terms and conditions [quote="BEJRLJR15981814, post:14, topic:511427, full:true"] (post deleted by author) [/quote]

I have the same error. After corrected, the message still the same: code does not pass.

I have carefully misread it too. Thanks pal