Checkboxes are objects of a HTML form which behaves like a toggle switch. i.e, a checkbox can be in one of the two states, either checked or unchecked. Checkboxes are used to return a single specific value to a webserver i.e, either true or false or 1 or 0.
Checkbox can be created as :
<input type="checkbox" name="name of the object " value="yes or no " checked>
Attributes of Checkbox Field: Name: Specifies the name of the object through which it can be referenced. Value: Specifies the value of the checkbox. This value will be returned if the checkbox is checked. Checked: If given, the checkbox will be checked by default else, it will not be checked. Don't add any single or double quote to this.