HTML Input Checkbox

The HTML Input Checkbox tool creates and inserts the tag necessary to create an HTML checkbox. The following options are available via the tool:

Name: The value in this field is written to the "name" attribute of the created input tag.

Value: The value in this field is written to the "value" attribute of the created input tag.

Initial State: this determines whether or not the button is selected initially.

The following is an example of the output generated by the HTML checkbox tool:

<input type="checkbox" name="checkbox_name" value="ON" checked="checked">

 

HTML Checkbox Tool