Text Field in HTML Forms :
The text field is a one line input field allowing the user to input text. Text Field input controls are created using the “input” element with a type attribute having value as “text”.
<!DOCTYPE html> <html> <h3>Example Of Text Field</h3> <body> <form> <label for="EMAIL ID">Email Id:</label><br> <input type="text" name="Email id" id="Email id"> </form> </body> </html>