Hint says You should give the first label text one space at the front.? i think i have that space..i have tried to reset

        <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>
type or paste code here

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

i wrote the code as i feel it should be written and when i click check code the hint says i need a space in front of the first label text

i figured that out.i was wondering why it looked odd .thankyou and sorry

Can you post a link to the Step you are working on please?

[quote=“JeremyLT, post:6, topic:598554, full:true”]
Can you post a link to the Step you are working on please?
[/quote]https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-html-forms-by-building-a-registration-form/step-27

i got it!!! thanks!

        <label><input type="radio" /> Personal Account </label>
        <label><input type="radio" /> Business Account </label>
        <label><input type="checkbox" required /> I accept the terms and conditions </label>
      </fieldset>
type or paste code here
1 Like

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