Filter (Advanced Search)
Downloads
0
Views
242
Video

Video is not available... Embedded is previous playlist.

Details

The <input type="image"> defines an image as a submit button.

The path to the image is specified in the src attribute.


<!DOCTYPE html>
<html>
<body>

<h2>Display an Image as the Submit button</h2>

<form action="/php/inputImage.php" method="post">
  <label for="fname">First name: </label>
  <input type="text" id="fname" name="fname"><br><br>
  <label for="lname">Last name: </label>
  <input type="text" id="lname" name="lname"><br><br>
  
  <input type="image" src="/images/img_submit.gif" alt="Submit" width="48" height="48">
</form>

</body>
</html>



Ad