[CatPhotoApp-Step 58]

At Step 58 you are asked to add (yet) another checkbox. This is the 4th in a row so it should be just copy&paste with some slight modifications. Yet the course refuses to acknowledge my answer. Can someone please help me figure out what I’m missing:

            <input id="loving" type="checkbox" name="personality"> <label for="loving">Loving</label>
            <input id="lazy" type="checkbox" name="personality"> <label for="lazy">Lazy</label>
            <input id="loving" type="checkbox" name="personality"> <label for="loving">Loving</label>
            <input id="energetic" type="checkbox" name="personality"> <label for="Energetic">Energetic</label>

Thanks in advance :slightly_smiling_face:

first you are repeating loving check box.
and for last check box for energetic id for the check box and label should be same like this:

<input id="energetic" type="checkbox" name="personality"> <label for="energetic">Energetic</label>

you used id for label in caps

3 Likes

I feel so stupid rn…
Thank you very much. Your solution worked! :smiley:

2 Likes