Advertisement
Home Open Editor ❯

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>

Try this code ❯

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

  • An absolute URL - source within or another web site ( href="http://www.example.com/index.html")
  • A relative URL - source within a web site ( href="index.html")
Home Open Editor ❯
Advertisement