Please will you assist. Where am I going wrong?
I seem to get this error: “Make sure there still are two radio buttons and three checkboxes nested in their respective fieldset
elements.”
My code:
<fieldset>
<legend>Is your cat an indoor or outdoor cat?</legend>
<label><input id="indoor" checked type="radio" name="indoor-outdoor" value="indoor"> Indoor</label>
<label><input id="outdoor" type="radio" name="indoor-outdoor" value="outdoor"> Outdoor</label>
</fieldset>
<fieldset>
<legend>What's your cat's personality?</legend>
<input id="loving" checked type="checkbox" name="personality" value="loving"> <label for="loving">Loving</label>
<input id ="loving" type="checkbox" name="personality" value="loving"> <label for="loving">Loving</label>
<input id="lazy" type="checkbox" name="personality" value="lazy"> <label for="lazy">Lazy</label>
<input id="energetic" type="checkbox" name="personality" value="energetic"> <label for="energetic"> Energetic</label>
</fieldset>