Learn HTML Forms by Building a Registration Form - Step 26

Tell us what’s happening:
Describe your issue in detail here.

To finish this fieldset off, link the text terms and conditions in the third label to the following location:

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

Maybe you should use “a” tag with href before and after “terms and conditions”.

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