HTML <input> src Attribute
Example
<form action="action.php">
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname">
<input type="image" src="submit.jpg" alt="Submit" width="50" height="50">
</form>
Meaning
The src attribute is used with image form controls <input type="image"> to specify the URL of the image file to load.
Standard Syntax
HTML: <input src="URL">,
XHTML: <input src="URL"/>
Advertisement
Attribute Values
| Value | Description |
|---|---|
| URL | URL for image to use as a submit button.
Value can be
|