Home » HTML Checkbox Tag

HTML Checkbox Tag

by Online Tutorials Library

HTML <Checkbox> Tag

The HTML <checkbox> tag is used to define the square boxes. It is a form element which allows users to select one or more options from the given options.

It is created by the type attribute of the <input> element as shown in the following syntax:

If we want to select any checkbox by default, then we have to set the checked attribute with the “yes” value as described in the following syntax:

Example

Test it Now

Output:

HTML Checkbox Tag

Browser Support

Element chrome browser Chrome ie browser IE firefox browser Firefox opera browser Opera safari browser Safari
<checkbox> Yes Yes Yes Yes Yes

Next TopicHTML

You may also like