what is the value of using HTML
Answers
Answer:
The value attribute in HTML is used to specify the value of the element with which it is used. ... When present in “text”, “password” and “hidden” it specifies the initial value of the input field. When present in “checkbox”, “radio” and “image” it specifies the value associated with the input.
Explanation:
Hope it will help you!.........
Answer:
Explanation:
The value attribute specifies the value of an <input> element. The value attribute is used differently for different input types: For "button", "reset", and "submit" - it defines the text on the button.
The value attribute specifies the value of an <input> element.
The value attribute in HTML is used differently for different input types:
For "button", "reset", and "submit" - it defines the text on the button
For "text", "password", and "hidden" - it defines the initial (default) value of the input field
For "checkbox", "radio", "image" - it defines the value associated with the input (this is also the value that is sent on submit)
For progress elements, the value attribute specifies how much of the task has been completed.
For param elements, the value attribute specifies the value of a <param> element.