Nothing is clear

 <fieldset>
    <label for="personal-account"><input id="personal-account" type="radio" name="account-type" /> Personal Account</label>
    <label for="business-account"><input id="business-account" type="radio" name="account-type" /> Business Account</label>
    <label for="terms-and-conditions"><input id="terms-and-conditions" type="checkbox" required /> I accept the<a href="https://www.freecodecamp.org/news/terms-of-service/"> terms and conditions</a></label>
  </fieldset>

It is not possible to understand the question, does anyone know what and how to do here?

Can you give us a link to the step? Or at least tell us which one it is?

You are to use an anchor tag to link it.

I did this but nothing works

You are very close. The problem is your spacing. You have included a space in the beginning of the link text, so you are linking the string:

 terms and conditions

There is a space character before terms.

You don’t want that opening space in the link text. It should come before the link.

thanks, I found an error, but it’s bad that nothing else works on elementary things, I don’t see a critical error because of the space, it’s more like whims.

It can definitely seem like that. But I would say that when you are creating links in inline text that you almost always will not want the space before the text or the space after the text to be part of the link. For example, if you are underlining the links then you will be underlining that empty space which will look weird.

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