Step55: The text Loving should be nested within the new label element. You have either omitted the text or have a typo. Don't know what to do. Help

       <legend>What's your cat's personality?</legend>
        **<input id="loving" type="checkbox"> <label for="loving"></label>**  
      </fieldset>
      <input type="text" name="catphotourl" placeholder="cat photo URL" required>

I don’t see the text “Loving” nested within this label element.

but then how will be able to put in the “for” attribute if I nest in… sorry I’m new to this,

is this how I’m supposed to do this step…<label>loving</label>

You had the for attribute on the label correctly.

<label for="loving">

That is correct. Now you need to add the text “Loving” to the label. You would do this the same way you added the text “What’s your cat’s personality?” to the legend, by placing it between the opening and closing tags.

Oh my god, it happened! Thank you so much!!

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