Learn HTML Forms by Building a Registration Form - Step 31

Tell us what’s happening:

Help!!!
Step 31 instructions are to Add the text" I accept the terms and conditions" immediately after the input element in the newly added label.
Then link the text" terms and conditions" to the following location:

Example Code

This is my code attempting to complete this task
I accept the terms and conditionsterms and conditions

Your code so far

What am I missing?

Hi there!

Post your code with three back (```) in separate line before and after the code

‘’‘<input id=“terms-and-conditions” ‘’’

‘’‘type=“checkbox” required />I accept the terms and conditions<a ‘’’

‘’‘href=“freeCodeCamp's Terms of Service”>terms and ‘’’

‘’‘conditions’‘’

you did not added back ticks (```) to show your code properly within the post.
you have added curly commas before and after each line of code.
exaplme:

(```)

your code goes here...

(```)

( the ( ) brackets is for showing back ticks in the post, do not use it) .

<label for="terms-and-conditions"><input id="terms-and-conditions" type="checkbox" required />I accept the terms and conditions<a href="https://www.freecodecamp.org/news/terms-of-service/">terms and conditions</a></label>

Don’t add the text terms and conditions twice. Wrap the existing one in the anchor element. Remove the second one.