Open In App

HTML | <input> src Attribute

Improve
Improve
Like Article
Like
Save
Share
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=
               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

 


Last Updated : 12 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads