HTML Name Attribute

In reference to the step below, why do all three checkboxes share the same name attribute?

            <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="energetic" type="checkbox" name="personality"> <label for="energetic">Energetic</label> 

Try removing them and see what happens when interacting with them :thinking:

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