Step 59 Build a cat photo app

Q. Add a value attribute to each checkbox. For convenience, set each checkbox’s value attribute to the same value as its id attribute.

A.

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

Hint

The value attribute of the Loving checkbox should be set to loving . You have either omitted the value or have a typo. Remember that attribute values should be surrounded with quotation marks

What is my error?

Please post your actual code and a link to the challenge. Thanks

Edit- ah, I formatted the code for you

This doesn’t look like the requested value

1 Like

the id attribute is loving so surely the value=“loving/loving”

And it should be something different, right?

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