I have successfully replaced the button with the image. But it appears that the image is placed on top of the button. I don’t wish to put inside my CSS as there are other styles overlapping it and I don’t want to have any redirect pages.
<button type="reset"><img src="images/cancel.png" width="15"></button>
Do this in CSS!
Then your button is:
You may also add specifiers to override default button behaviors – for example
-webkit-appearance: none;but I believe that’s enough to do what you need.