Learn HTML by Building a Cat Photo App-step 61

<fieldset>
            <legend>Is your cat an indoor or outdoor cat?</legend>
            <label><input checked id="indoor"  type="radio" name="indoor-outdoor" value="indoor"> Indoor</label>
            <label><input id="outdoor" type="radio" name="indoor-outdoor" value="outdoor" > Outdoor</label>
</fieldset>

error said i didnt put checked in the first checkbox

hint: The first checkbox is missing
but i already put one there

Welcome to the community :smiley:

If you try a step three times a button will appear that will automatically create a post with a link to the step your on, your code so far and can be edited before posting to include your question or explanation of what you need help with.

After copy and pasting the code you have given, it passed for me.
But I also added ‘checked’ to the first checkbox.

If you added ‘checked’ to both inputs,
this is what you should see in the preview
image

Oh, so i need to put it to other too right? Thankss

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