<html>
<body>
<form action="demo_form.php">
First name: <input type="text" name="fname"><br>
<input type="image" src="submit.gif" alt="Submit" align="right" width="48" height="48">
</form>
<p>Click on the image, and the input will be sent to a page on the server called "demo_form.php".</p>
<p><b>Note:</b> The image input type sends the X and Y coordinates of the click that activated the image button as default.</p>
<p>The align attribute was deprecated in HTML 4, and is not supported in HTML5. Use CSS instead.</p>
</body>
</html>