Open In App

HTML | <input> src Attribute

Last Updated : 12 Aug, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

The HTML <input> src Attribute is used to specify the URL of the image to be used as a submit button. This attribute can only be used with <input type="image">.
Syntax: 
 

<input src="URL">


Attribute Values: It contains a single value URL that specifies the link of the source image. There are two types of URL links which are listed below: 
 

  • Absolute URL: It points to another webpage.
  • Relative URL: It points to other files of the same web page.


Example: 
 

html
<!DOCTYPE html>
<html>

<head>
    <title>
        HTML Input src Attribute
    </title>
</head>

<body style="text-align:center;">

    <h1 style="color:green;"> 
            GeeksForGeeks 
        </h1>

    <h2>HTML Input src Attribute</h2>
    <form>
        <input id="myImage" 
               type="image" 
               src=
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png" 
               alt="Submit"
               width="70"
               height="48" />
    </form>
</body>

</html>

Output: 
 


Supported Browsers: The browsers supported by HTML <input> src Attribute are listed below: 
 

  • Google Chrome 1.0
  • Edge 12.0
  • Internet Explorer 5.5
  • Firefox 1.0
  • Apple Safari 1.0
  • Opera 12.1


 


Next Article

Similar Reads