Hi! I really have tried hard to get this right but I don´t understand where is the issue.
Thanks!
<label for="loving"><input id="loving" type="checkbox"> Loving</label>
Hi! I really have tried hard to get this right but I don´t understand where is the issue.
Thanks!
<label for="loving"><input id="loving" type="checkbox"> Loving</label>
Hi! Welcome to the forum.
Your code here puts the input
element inside the label
element (nested) but the two elements should be sequential. (First one element, then the other.) Nest only the world Loving
inside the label element; the input element should be first. (Don’t forget to keep the space!)
Here is the correct code
Loving
Please do not try to provide solutions to the challenges
Thanks
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.