Checkbox
From the menu go to: Insert > Forms > Checkbox

Checkboxes are used when you want the user to select one or more options of a limited number of choices.

<form>
<input type="checkbox" name="cake">
I want a piece of cake<br>
<input type="checkbox" name="chocolate">
I want a piece of chocolate
</form>

Result:

I want a piece of cake
I want a piece of chocolate


See Also: Form Samples