i was asked to do this:
Associate the text Loving
with the checkbox by nesting only the text Loving
in a label
element and giving it an appropriate for
attribute.
and then i did this but it’s not working. someone should please help me out
Loving
If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Ask for Help button located on the challenge (it looks like a question mark). This button only appears if you have tried to submit an answer at least three times.
The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.
Thank you.
I recommend you next time to put in the title of your message the lesson number you are asking help for with the code you wrote to show exactly what you are stuck on and what you did so far to pass the challenge
<label>
refers to the text outside of the checkbox
<input type="checkbox">
so it is asking you to nest <label>
around the text directly without nesting <input>
too
these are the 2 ways to associate <label>
text to <input>
. So when you click the text it will select its corresponding <input>
too