Multiple choice technology

What is the correct HTML for making a checkbox?

  1. <input type="check" />

  2. <check>

  3. <checkbox>

  4. <input type="checkbox" />

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

HTML checkboxes are created using the tag with type="checkbox" (option D). There is no dedicated or tag in HTML. Checkboxes are a type of input element.