I’m pretty stuck on step 27, I tried using Google to help but can’t seem to find why the way I’ve added the code doesn’t work.
Here is what is required:
Step 27
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/
and here is what I have coded:
<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<a href="https://www.freecodecamp.org/news/terms-of-service/"> terms and conditions</a></label>
</fieldset>
I keep getting a hintsaying you should only wrap the a element around the text terms and conditions but surely that is what I’m doing?