Last Updated : 12 Aug, 2022
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:
Example:
<!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:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4