type | It is used to specify the type of the input element. Its default value is text. |
value | It 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 | It is used to specify the name of the input element. |
alt | It is used to provide alternate text for the user, if they cannot view the image. |
autofocus | It specifies that an element should automatically get focus when the page loads. |
checked | It specifies that an element should be pre-selected (checked) when the page loads. |
disabled | The disabled attribute specifies that the element should be disabled |
form | The form attribute is used to specify one or more forms to which the <input> element belongs to. |
max | It is used to specify the maximum value for an < input > element. |
required | It specifies that an input field must be filled out before submitting the form. |
readonly | It specifies that an input field is read-only. A read-only input field cannot be modified. |
accept | It is used to specifies the types of files that the server accepts. |
align | It is used to specifies the alignment of an image input. |
autocomplete | It s used to specifies whether an <input> element should have autocomplete enabled |
dirname | It is used to specifies that the text direction will be submitted. |
formaction | It is used to specifies the URL of the file that will process the input control when the form is submitted |
formenctype | It is used to specifies how the form-data should be encoded when submitting it to the server |
formmethod | It is used to defines the HTTP method for sending data to the action URL |
formnovalidate | It is used to defines that form elements should not be validated when submitted |
formtarget | It is used to specifies where to display the response that is received after submitting the form |
height | It is used to specifies the height of an <input> element |
list | It is used to refers to a <datalist> element that contains pre-defined options for an <input> element |
maxlength | It is used to specifies the maximum number of characters allowed in an <input> element |
min | It is used to specifies a minimum value for an <input> element |
multiple | It is used to specifies that a user can enter more than one value in an <input> element |
pattern | It is used to specifies a regular expression that an <input> element's value is checked against |
size | It is used to specifies the width, in characters, of an <input> element |
src | It is used to specifies the URL of the image to use as a submit button |
step | It is used to specifies the legal number intervals for an input field |
width | It is used to specifies the width of an <input> element (only Ifor type="image") |