![]() |
|
![]() | |
![]() | |
![]() |
|
We can easily change what the buttons say. <FORM> <INPUT TYPE="submit" VALUE="Send it away Ray!"> <INPUT TYPE="reset" VALUE="Clear the form Norm!"> </FORM>
If necessary, the SUBMIT button can also have a NAME. You would need this if, for whatever reason, you had more than one SUBMIT button. Can we use an image for a Submit button? Sure, piece of cake. <FORM> <INPUT TYPE="image" SRC="submit.gif"> </FORM>
Add WIDTH & HEIGHT so your browser can load your page quickly and efficiently. Add an ALT attribute so if someone is running without images they can still submit your form. And add BORDER=0 if you want the little link colored box to go away.
<FORM> <INPUT TYPE="image" SRC="images/submit.gif" WIDTH=94 HEIGHT=26 BORDER=0 ALT="Submit"> </FORM>
Note that the INPUT TYPE="image" is, by default, a Submit button only. You can't make a Reset image button.
|