Multiple choice technology web technology What is the correct HTML for making a text input field? <input type="text" /> <textinput type="text" /> <input type="textfield" /> <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.