Open In App

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:

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:


Article Tags :