![]() |
VOOZH | about |
The HTML <input> tag is used to create interactive form controls that allow users to enter data in a webpage. It supports multiple input types such as text, password, email, number, and more for collecting user information.
Syntax:
<input type="text" ... />Note: The <input> Tag supports the Global Attributes & the Event Attributes in HTML.
<input> types specify the kind of data a user can enter in a form, such as text, email, password, or number.
| Input Type | Description |
|---|---|
| <input type="text"> | Single-line text input |
| <input type="password"> | Masked text input for passwords |
| <input type="checkbox"> | Toggle for selecting multiple options |
| <input type="radio"> | Single selection from multiple options |
| <input type="submit"> | Button to submit form data |
| <input type="button"> | General-purpose button |
| <input type="file"> | Input for uploading files |
| <input type="number"> | Input for numerical values |
| <input type="date"> | Input for selecting dates |
| <input type="email"> | Input for email addresses |
| <input type="color"> | Input for selecting colors |
| <input type="range"> | Slider for selecting a numeric value within a range |
| <input type="hidden"> | Hidden input for form data |
| <input type="image"> | Input using an image for form submission |
Attributes provide additional information and control the behavior of HTML elements, such as type, name, value, and required for the <input> tag.
Attributes | Descriptions |
|---|---|
It is used to specify the type of the input element. Its default value is text. | |
It is used to specify the value of the input element. | |
Placeholder attribute is used to specify hint that describes the expected value of an input field. | |
It is used to specify the name of the input element. | |
It is used to provide alternative text for an image if it cannot be displayed, and is mainly used with <input type="image">. | |
It specifies that an element should automatically get focus when the page loads. | |
It assigns a keyboard shortcut to activate or focus an input element. | |
It specifies that an element should be pre-selected (checked) when the page loads. | |
The disabled attribute specifies that the element should be disabled | |
The form attribute is used to specify one or more forms to which the <input> element belongs to. | |
It is used to specify the maximum value for an < input > element. | |
It specifies that an input field must be filled out before submitting the form. | |
It specifies that an input field is read-only. A read-only input field cannot be modified. | |
It is used to specify the types of files that the server accepts. | |
It s used to specify whether an <input> element should have autocomplete enabled | |
It is used to specify that the text direction will be submitted. | |
It is used to specify the URL of the file that will process the input control when the form is submitted | |
It is used to specify how the form-data should be encoded when submitting it to the server | |
It is used to defines the HTTP method for sending data to the action URL | |
It is used to defines that form elements should not be validated when submitted | |
It is used to specify where to display the response that is received after submitting the form | |
It is used to specify the height of an <input> element | |
It is used to refers to a <datalist> element that contains pre-defined options for an <input> element | |
It is used to specify the maximum number of characters allowed in an <input> element | |
It is used to specify a minimum value for an <input> element | |
It is used to specify that a user can enter more than one value in an <input> element | |
It is used to specify a regular expression that an <input> element's value is checked against | |
It is used to specify the width, in characters, of an <input> element | |
It is used to specify the URL of the image to use as a submit button | |
It is used to specify the legal number intervals for an input field | |
It is used to specify the width of an <input> element (only for type="image") |
Example: Styled Password Input Field
Example: Email Input Field with Placeholder
The <input> element of type "email" provides a field for users to enter an email address, with built-in validation for correct email formatting.