HTML<input>Tag: The HTML<input> tag defines an input field where the user can entire the data. And the HTML <input> elements are used within a <form> element to declare input controls that allow users to input data. An input field can vary in many ways, depending on the type attribute. The is an empty element which only contains attributes. For defining labels for the input element, < label> can be used.
HTML<input>Tag
This HTML input tag supports both the global and the event attributes.
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 a 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 image input.
- autocomplete: This property is used to specifies whether an <input> element should have to 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”)
- Browser compatibility
Browser Support
The HTML input tag is supported by different types of browsers.
- Chrome
- Firefox
- Opera
- Safari
- Internet Explorer
Example:
<!DOCTYPE html> <html> <body> <form action="/action_page.php"> First name: <input type="text" name="FirstName" value="Freshersnow"><br> Last name: <input type="text" name="LastName" value="Tutorial"><br> <input type="submit" value="Submit"> </form> </body> </html>
Output:
Attributes that are supported by the HTML <input> tag
Attribute | Value | Description |
---|---|---|
accept | file_extension audio/* video/* image/* media_type |
Specifies a filter for what file types the user can pick from the file input dialog box |
align | left right top middle bottom |
Specifies the alignment of an image input |
alt | text | Specifies an alternate text for images |
checked | checked | Specifies that an input element should be pre-selected when the page loads |
disabled | disabled | Specifies that an input element should be disabled |
maxlength | number | Specifies the maximum number of characters allowed in an input element |
name | text | Specifies the name of an input element |
readonly | readonly | Specifies that an input field is read-only |
size | number | Specifies the width, in characters, of an input element |
src | URL | Specifies the URL of the image to use as a submit button |
type | button checkbox color date datetime-local file hidden image month number password radio range reset search submit tel text time url week |
Specifies the type of an input element to display |
value | text | Specifies the value of an input element |