Multiple choice technology web technology

What is the correct HTML for making a text input field?

  1. <input type="text" />

  2. <textinput type="text" />

  3. <input type="textfield" />

  4. <textfield>

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

The element with type='text' creates a single-line text input field. The type value must be 'text', not 'textfield'. and are not valid HTML elements.