Tell us what’s happening:
List item
The second fieldset element should not be nested in the first fieldset element. this is the error
Your code so far
<!-- User Editable Region -->
<fieldset>
<legend>Is your cat an indoor or outdoor cat?</legend>
<label>
<input id="indoor" type="radio" name="indoor-outdoor" value="indoor"> Indoor
</label>
<br>
<label>
<input id="outdoor" type="radio" name="indoor-outdoor" value="outdoor"> Outdoor
</label>
</fieldset>
<!-- Second fieldset placed directly below the first one, NOT inside it -->
<fieldset>
<legend>Tell us more about your cat</legend>
<label for="cat-name">What is your cat's name?</label>
<input id="cat-name" type="text" name="cat-name">
<br>
<label for="cat-age">How old is your cat?</label>
<input id="cat-age" type="number" name="cat-age">
</fieldset>
<!-- User Editable Region -->
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36
Challenge Information:
Learn HTML by Building a Cat Photo App - Step 54