How to link my terms and conditions to a location html

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

   **Your code so far**
\ file: <!DOCTYPE html>
<html>
 <head>
   <title>Registration Form</title>
	  <link rel="stylesheet" type="text/css" href="styles.css" />
 </head>
 <body>
   <h1>Registration Form</h1>
   <p>Please fill out this form with the required information</p>
   <form action='https://register-demo.freecodecamp.org'>
     <fieldset>
       <label>Enter Your First Name: <input type="text" required /></label>
       <label>Enter Your Last Name: <input type="text" required /></label>
       <label>Enter Your Email: <input type="email" required /></label>
       <label>Create a New Password: <input type="password" pattern="[a-z0-5]{8,}" required /></label>
     </fieldset>
     <fieldset>
       <label><input type="radio" name="account-type" /> Personal Account</label>
       <label><input type="radio" name="account-type" /> Business Account</label>
   
       <a href="https://www.freecodecamp.org/news/terms-of-service/
"><label><input type="checkbox" required /> I accept the terms and conditions</label></a>
     </fieldset>
     <fieldset></fieldset>
     <input type="submit" value="Submit" />
   </form>
 </body>
</html>
<!DOCTYPE html>
<html>
 <head>
   <title>Registration Form</title>
	  <link rel="stylesheet" type="text/css" href="styles.css" />
 </head>
 <body>
   <h1>Registration Form</h1>
   <p>Please fill out this form with the required information</p>
   <form action='https://register-demo.freecodecamp.org'>
     <fieldset>
       <label>Enter Your First Name: <input type="text" required /></label>
       <label>Enter Your Last Name: <input type="text" required /></label>
       <label>Enter Your Email: <input type="email" required /></label>
       <label>Create a New Password: <input type="password" pattern="[a-z0-5]{8,}" required /></label>
     </fieldset>
     <fieldset>
       <label><input type="radio" name="account-type" /> Personal Account</label>
       <label><input type="radio" name="account-type" /> Business Account</label>
   
       **<a href="https://www.freecodecamp.org/news/terms-of-service/**
**"><label><input type="checkbox" required /> I accept the terms and conditions</label></a>**
     </fieldset>
     <fieldset></fieldset>
     <input type="submit" value="Submit" />
   </form>
 </body>
</html>
\ file: body {
 width: 100%;
 height: 100vh;
 margin: 0;
 background-color: #1b1b32;
	color: #f5f6f7;
}

label {
	display: block;
	margin: 0.5rem 0;
}

body {
 width: 100%;
 height: 100vh;
 margin: 0;
 background-color: #1b1b32;
	color: #f5f6f7;
}

label {
	display: block;
	margin: 0.5rem 0;
}

   **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36

Challenge: Step 26

Link to the challenge:

2 Likes

Hey there and welcome to the forums! :wave: :slightly_smiling_face:

What seems to be the issue? Any error messages? Something you don’t understand? The more info you give us the better we can help.


Currently, I’d reread what was asked:

…link the text terms and conditions to the following location…

Right now, it looks like your code converts all the text, plus the <input> element, and the <label> element to a link. Might be a little bit more than the lesson wants converted :wink:

I have tried like this too is not passing.

 <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>

It doesn’t look like this code is formatted right, so it was displayed with Markup. I’d edit with the two rows of three backticks:

```
Your code here
```


It looks like this has “terms and conditions” written twice, though you’ll only want it showed once.

Hint

Remember that you can put an anchor, <a> inside a paragraph, <p>:

<p>Click here to see <a href="whatever_url"> more content </a></p>
    <a href ="https://www.freecodecamp.org/news/terms-of-service/">terms and conditions</a> </label>
2 Likes

I accept the terms and conditions
base on the hint above, it’s like these