4 8
Make your SUBMIT button an IMAGE using HTML
Code snippets
You want to use something a little bit more attractive than the standard ‘SUBMIT’ button – even changing the text to ‘PUSH ME NOW’ isn’t as visually appealing as a nice graphic you’ve made to match the color and theme of your site. We all know graphics help make a website jump from OKAY to STUNNING! So, how do you do it?
It’s simple. Here’s the code:
<input type=”image” name=”cmdSubmit” alt=”Submit Form” src=”/images/submit.png” value=”Submit”>
Simply put that in place of your standard form submit code and you’re ready to go!
