KnowledgeBoat Logo

Computer Applications

How to create a checkbox in HTML?

  1. <input type = "checkbox">
  2. <input type = "button">
  3. <checkbox>
  4. <input type = "check">

HTML Intro

6 Likes

Answer

<input type = "checkbox">

Reason — To create a checkbox in HTML, we use the <input> tag along with its 'type' attribute as follows:

<input type = "checkbox">

Answered By

2 Likes


Related Questions