Learn HTML by Building a Cat Photo App - Step 56

      <fieldset>
        <legend>What's your cat's personality?</legend>
        <label for="Loving"><input id="loving" type="checkbox"> Loving</label>
      </fieldset>

The text Loving should be wrapped in a label element.
How to do it?

Hello!
The code posted shows a couple of problems.

The for attribute value should not be capitalized.

The label element is to come before the text Loving so that it can nest it between the two label element tags.

Please be aware not to leave any extra spaces.

Happy coding!

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