Learn HTML by Building a Cat Photo App - Step 61

Tell us what’s happening:
Please correct my code. I’m having trouble figuring out what must be the error.
Hint: Make sure there still are two radio buttons and three checkboxes nested in their respective fieldset elements.

**
Is your cat an indoor or outdoor cat?
Indoor
Outdoor

    <fieldset>
     <legend>What's your cat's personality?</legend>
     <label><input id="loving" type="checkbox" name="loving-lazy-energetic" value="loving" checked> Loving</label>
     <label><input id="lazy" type="checkbox" name="loving-lazy-energetic" value="lazy" checked> Lazy</label>
     <label><input id="energetic" type="checkbox" name="loving-lazy-energetic" value="energetic" checked> Energetic</label>
    </fieldset>

**

Hey there, If you are on the Step 61 for this project
You just have to add the attribute ‘checked’ on the first radio button input element and on the first checkbox input element.

Yes, that’s already included. But I still get an error.

Is your cat an indoor or outdoor cat? Indoor Outdoor
    <fieldset>
     <legend>What's your cat's personality?</legend>
     <label><input id="loving" type="checkbox" name="loving-lazy-energetic" value="loving" checked> Loving</label>
     <label><input id="lazy" type="checkbox" name="loving-lazy-energetic" value="lazy"> Lazy</label>
     <label><input id="energetic" type="checkbox" name="loving-lazy-energetic" value="energetic"> Energetic</label>
    </fieldset>

I still get an error.

You are asking about the “indoor-outdoor” part but providing me with the “what’s your cat’s personality” .

the whole code wont paste here

Just try to put checked attribute on the first radio input element and the first checkbox input element ONLY. You have included checked on every label.
Also I think you should change your name attributes to “personality”.

hello and welcome to fcc forum :slight_smile:

for these kinds of queries always consider including “exercise url” along with it

happy learning :slight_smile:

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