Learn HTML by Building a Cat Photo App - Step 56

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

Your code so far

<input id="loving" type="checkbox"><label>Loving </label>

Your browser information:

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

Challenge: Learn HTML by Building a Cat Photo App - Step 56

Link to the challenge:

Hey! You should link that input with the text within the <label> tag. You can do so using the attribute for at label and assigning it the input’s id.

<input id="input-id" ... ><label for="input-id" >Text</label>

Thank You so much
But i will solve it.