Tell us what’s happening:
Describe your issue in detail here.
how do i do this below:
Hint
You should only wrap the a
element around the text terms and conditions
.
**Your code so far**
<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 terms and conditions</label>
2 Likes
Please don’t delete the link to the Step when you make a post. Thanks
okay, so how do i proceed?
hbar1st
September 16, 2022, 4:38pm
#4
Looks like you didn’t make the phrase “terms and conditions” into a link.
Are you struggling with how to do it?
(Recall, you can use anchor tag to make words into links)
hbar1st
September 16, 2022, 4:38pm
#5
it would be nice if you posted the link to the challenge again…
Challenge: Learn HTML Forms by Building a Registration Form - Step 29
Link to the challenge:
hbar1st
September 16, 2022, 4:45pm
#7
thanks, so based on this, pls review my earlier response (I think I remembered this challenge correctly).
could you please give me an illustration?
hbar1st
September 16, 2022, 4:53pm
#9
yup I can try.
if you look at your preview pane you should see something very similar to this:
I accept the terms and conditions
The objective is to change this to look like this;
I accept the terms and conditions
And to do that you will need an anchor tag.
Recall that anchor tags are similar to the following example:
<a href="my-link">Click Me!</a>
8 Likes
i just wrote it and it passed! thanks!
1 Like
Sam95
September 28, 2022, 4:46pm
#11
thanks a lot really struggled to solve this stage
1 Like
thank you all, I have fixed it.