Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
frontend
html
examples
forms
20button_image.html
20button_image.html
<!DOCTYPE HTML> <html lang="hr"> <head> <meta charset="UTF-8"> <title>Image as submit button</title> </head> <body> <form action="19script.php" method="POST" enctype="application/x-www-form-urlencoded"> name: <input type="text" name="var" value=""> <br><br> <button type="submit" style="padding:0px;border:0px solid #FFF;background:transparent;cursor:pointer;"> <img src="button.png" width="150" alt="submit"> </button> </form> </body> </html>
Reload page
Preview
W3C validation
Edit Code