Forms commonly use checkboxes for questions that may have more than one answer.
<label for="loving">
<input id="loving" type="checkbox" name="personality"> Loving
</label>
They are grouped when they shared the same “name” attribute. The “name” attribute acts as the “variable” name when sending a “form”.