I’m supposed to link the terms and conditions the website, this is what i got.
<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>
<a href="https://www.freecodecamp.org/news/terms-of-service/">terms and conditions</a>
</fieldset>
I’ve edited your post 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.
Yes, you are correct that you need to use anchor tag to create the link.
The issue is that you were supposed to wrap the anchor tags around terms and conditions here
instead you created a whole new terms and conditions right below with the anchor tag
You see how terms and conditions shows up twice here
Wrap your anchor tags around the first terms and conditions I showed you and the test will pass.