HTML <input> type Attribute
Example
<label for="html">HTML: </label>
<input type="checkbox" id="html" value="HTML">
<br>
<label for="css">CSS: </label>
<input type="checkbox" id="css" value="CSS">
<br>
<label for="js">JavaScript: </label>
<input type="checkbox" id="js" value="JavaScript">
Meaning
The <input type="checkbox"> defines a checkbox.
A check box allowing single values to be selected/deselected.
Standard Syntax
HTML: <input type="checkbox">
XHTML: <input type="checkbox" />
Advertisement