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

Loving

what am i doing wrong ?


<!-- User Editable Region -->

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

<!-- User Editable Region -->

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36

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

Link to the challenge:

To associate the new label element you wrote with its input element, the value used in the for attribute must match exactly the value used in the id attribute (in the input).

Correct this then remove the extra spaces you have within the label text.

The right code Loving Loving Loving

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.