In HTML, the input field can be specified using where a user can enter data. The input tag is used within < form> element to declare input controls that allow users to input data. An input field can be of various types depending upon the attribute type. The Input tag is an empty element which only contains attributes. For defining labels for the input element, < label> can be used.
Syntax
<input type = "value" .... />
Attributes:
- type: The type attribute is used to specify the type of the input element. Its default value is text.
- value: The value attribute is used to specify the value of the input element.
- placeholder: Placeholder attribute is used to specify hint that describes the expected value of an input field.
- name: The name attribute is used to specify the name of the input element.
- alt: The alt attribute is used to provide alternate text for the user, if they cannot view the image.
- autofocus: Autofocus attribute specifies that an element should automatically get focus when the page loads.
- checked: The checked attribute specifies that an element should be pre-selected (checked) when the page loads. The checked attribute can be used with < input type=”checkbox” > and < input type=”radio” >.
- disabled: The disabled attribute specifies that the element should be disabled. The disabled attribute can be set to keep a user from using the < input > element until some other condition has been met.
- form: The form attribute is used to specify one or more forms to which the <input> element belongs to.
- max : The max attribute is used to specify the maximum value for an < input > element.
- required: The required attribute specifies that an input field must be filled out before submitting the form.
- readonly: The readonly attribute specifies that an input field is read-only. A read-only input field cannot be modified. A form will still submit an input field that is readonly, but will not submit an input field that is disabled.
- accept: This property is used to specifies the types of files that the server accepts.
- align: This property is used to specifies the alignment of an image input.
- autocomplete: This property is used to specifies whether an <input> element should have autocomplete enabled.
- dirname: This property is used to specifies that the text direction will be submitted.
- formaction: This property is used to specifies the URL of the file that will process the input control when the form is submitted (for type=”submit” and type=”image”)
- formenctype: This property is used to specifies how the form-data should be encoded when submitting it to the server (for type=”submit” and type=”image”)
- formmethod: This property is used to defines the HTTP method for sending data to the action URL (for type=”submit” and type=”image”)
- formnovalidate: This property is used to defines that form elements should not be validated when submitted
- formtarget : This property is used to specifies where to display the response that is received after submitting the form (for type=”submit” and type=”image”)
- height: This property is used to specifies the height of an <input> element (only for type=”image”)
- list: This property is used to refers to a <datalist> element that contains pre-defined options for an <input> element
- maxlength: This property is used to specifies the maximum number of characters allowed in an <input> element
- min: This property is used to specifies a minimum value for an <input> element
- multiple: This property is used to specifies that a user can enter more than one value in an <input> element
- pattern: This property is used to specifies a regular expression that an <input> element’s value is checked against
- size: This property is used to specifies the width, in characters, of an <input> element
- src: This property is used to specifies the URL of the image to use as a submit button (only for type=”image”)
- step: This property is used to specifies the legal number intervals for an input field
- width: This property is used to specifies the width of an <input> element (only for type=”image”)
Example-1: Using “type” attribute.
html
<!DOCTYPE html>
< html >
< body >
< h1 >GeeksForGeeks</ h1 >
< form >
< label >Name:</ label >
< input type = "text" name = "name" value = "" >
< br >< br >
< label >E-mail:</ label >
< input type = "email" name = "emailaddress" >
< br >< br >
< label >Password: </ label >
< input type = "password" name = "password" >
< br >< br >
< input type = "submit" >
</ form >
</ body >
</ html >
|
Output:

Example-2: Using “value” attribute.
html
<!DOCTYPE html>
< html >
< body >
< h1 >GeeksForGeeks</ h1 >
< form >
< label > Name: </ label >
< input type = "text" name = "name1" value = "Rahul" >
< br >
< br >
< input type = "submit" value = "Submit form" >
</ form >
</ body >
</ html >
|
Output:

Supported Browsers:
- Google Chrome
- Edge 12 and above
- Internet Explore
- Firefox 1 and above
- Opera
- Safari 1 and above
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
22 Jul, 2022
Like Article
Save Article