About 1,380,000 results
Open links in new tab
  1. <input type="checkbox"> - HTML | MDN - MDN Web Docs

    Dec 18, 2025 · The <input type="checkbox"> element in HTML allows users to select single values for submission in a form, with customizable appearance based on the operating system.

  2. HTML input type="checkbox" - W3Schools

    Definition and Usage The <input type="checkbox"> defines a checkbox. The checkbox is shown as a square box that is ticked (checked) when activated. Checkboxes are used to let a user …

  3. How to Create a Checkbox in HTML? - GeeksforGeeks

    Aug 30, 2024 · The checkbox is the HTML form element that lets users select one or more options from predefined choices. It can often be used when a user selects multiple items in the …

  4. Elements/input/checkbox - HTML Wiki

    Dec 7, 2010 · Gives the name of the input element. When specified, the element is required. Gives the default value of the input element. [try it] The HTML5 specification defines the …

  5. HTML Input Checkbox - Tutorial Kart

    The HTML <input> element with type="checkbox" creates a toggleable box that allows the user to select or deselect an option. Checkboxes are commonly used in forms to let users choose …

  6. HTML input type="checkbox", with Quick Examples

    The <input> tag with a type="checkbox" attribute creates a checkbox (also called a tickbox). Checkboxes let users select multiple options by ticking one or more boxes.

  7. HTML Checkbox type Property: Checkbox Type - CodeLucky

    Feb 9, 2025 · When dealing with checkboxes, the type attribute specifically designates the input as a checkbox. This is crucial for proper form handling, accessibility, and browser rendering. In …

  8. HTML input checked Attribute - W3Schools

    When present, it specifies that an <input> element should be pre-selected (checked) when the page loads. type="radio">. The checked attribute can also be set after the page load, with a …

  9. HTML <input type="checkbox"> - GeeksforGeeks

    Jul 11, 2025 · The HTML <input type="checkbox"> creates a checkbox input element. It displays as a square box, checked when activated. Checkboxes enable users to select one or more …

  10. HTML DOM Input Checkbox Object - W3Schools

    The Input Checkbox object represents an HTML <input> element with type="checkbox". You can access an <input> element with type="checkbox" by using getElementById (): Tip: You can …