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?