HTML | input value Attribute
The value attribute for <input> element in HTML is used to specify the initial value of the input element. It has different meaning for different input type:
- The “button”, “reset” and “submit” property specifies the text on the button.
- The “text”, “password” and “hidden” property specifies the initial value of the input field.
- The “checkbox”, “radio” and “image” property specifies the value associated with the input.
Syntax:
<input value = "text">
Attribute Value: It contains single value text which specifies the value of input element.
Example 1: This example describes the <input> value attribute.
<!DOCTYPE html> < html > < head > < title >HTML input value Attribute</ title > </ head > < body style = "text-align:center" > < h1 style = "color:green;" > GeeksforGeeks </ h1 > < h2 > HTML input value Attribute </ h2 > Input: < input type = "text" value = "GeeksforGeeks" > </ body > </ html > |
Output:
Example 2: This example describes the <input> value attribute.
<!DOCTYPE html> < html > < head > < title >HTML input value Attribute</ title > </ head > < body style = "text-align:center" > < h1 style = "color:green;" > GeeksforGeeks </ h1 > < h2 > HTML input value Attribute </ h2 > < input type = "button" value = "Submit" > </ body > </ html > |
Output:
Supported Browsers: The browser supported by <input> value attribute are listed below:
- Apple Safari 1.0
- Google Chrome 1.0
- Firefox 1.0
- Opera 1.0
- Internet Explorer 2.0
Please Login to comment...