September 2, 200917 yr Okay, so i want to turn the "<input type="submit" value="Send">" into a picture (like a .jpeg or something like that). How do i do that? Full code (from w3school): <html> <body> <form action="MAILTO:someone@w3schools.com" method="post" enctype="text/plain"> <h3>This form sends an e-mail to W3Schools.</h3> Name:<br> <input type="text" name="name" value="Bajs" size="20"> <br> Comment:<br> <input type="text" name="comment" value="yourcomment" size="40"> <br><br> <input type="submit" value="Send"> <input type="reset" value="Reset"> </form> </body> </html>
September 2, 200917 yr Okay, so i want to turn the "<input type="submit" value="Send">" into a picture (like a .jpeg or something like that). How do i do that? Full code (from w3school): <html> <body> <form action="MAILTO:someone@w3schools.com" method="post" enctype="text/plain"> <h3>This form sends an e-mail to W3Schools.</h3> Name:<br> <input type="text" name="name" value="Bajs" size="20"> <br> Comment:<br> <input type="text" name="comment" value="yourcomment" size="40"> <br><br> <input type="submit" value="Send"> <input type="reset" value="Reset"> </form> </body> </html> <input type="image" src="buynow.gif" name="submit" alt="" />
September 2, 200917 yr Author <input type="image" src="buynow.gif" name="submit" alt="" /> So all i do is to change the <input type="submit"> to <input type="image"> and add a source?
Create an account or sign in to comment