Open In App

HTML | <input> src Attribute

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=
               alt="Submit"
               width="70"
               height="48" />
    </form>
</body>
 
</html>

Output: 
 



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

 

Article Tags :