What am I doing wrong? I've spent 15 minutes on this

Can you help figure out what’s wrong with this code?

Loving
Lazy
<input id=“energetic” type=“checkbox” name="personality’> Energetic

the hint its giving me: Your new checkbox should have an id attribute with the value energetic and a name attribute with the value personality . Check that there is a space after the opening tag’s name and/or there are spaces before all attribute names.

hi there,
seems like you mixed up double-quotes and quotes at your name attribute.

Hello,
Change your piece of code to

<input id=“energetic” type=“checkbox” name="personality"> Energetic

I Hope this answer is useful to you

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