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": . There are no or tags in HTML. The type attribute must be exactly "checkbox", not "check".