HTML Input Attributes

images (7).jpeg

source

HTML Input Attributes

The value Attribute

The value attribute specifies the initial value for an input field:

Example

form action=""
First name:

input type="text"name="firstname"value="John"

The disabled Attribute

The disabled attribute specifies that the input field is disabled.

A disabled input field is unusable and un-clickable, and its value will not be sent when submitting the form:

Example

form action=""
First name:

input type="text"name="firstname"value="John" disabled

The readonly Attribute

The readonly attribute specifies that the input field is read only (cannot be changed):

Example

form action=""
First name:

<input type="text"name="firstname"value="John" readonly>

H2
H3
H4
3 columns
2 columns
1 column
Join the conversation now