state at least three attribute of input
Answers
Answered by
7
Answer:
The pattern attribute specifies a regular expression that the <input> element's value is checked against.
Answered by
2
"value", "readonly" and "type" are the three attributes of input
Explanation:
- The "input" is an element of the HTML form which is used to display a box to take the inputs from the user.
- The "value", "readonly" and "type" are the attributes of the inputs which is used for some task which are listed below:-
<input type="text" value="john" readonly> <! –– HTML code to describe the attributes which are defined above––>
- The type is used to tell the type of the box that what value it will take. for example, the text parameter specifies that the box will take text value.
- The value is used to assign the default value for any text box.
- The readonly is used to specify that it is required to input on the box.
Learn more:
- Question for input element : https://brainly.in/question/7567706
Similar questions