Step 54
Forms commonly use checkboxes for questions that may have more than one answer. The input
element with a type
attribute set to checkbox
creates a checkbox.
Under the legend
element you just added, add an input
with its type
attribute set to checkbox
and give it the option of:
Loving
MY CODE
:What’s your cat’s personality?
<label><input id="loving" type="checkbox"> Loving</label>
IM doing this but its not working. it says the input element shoud not have a closingtag.