Image Button
Image Button
DescriptionThe tag to put an image button on your web site is <INPUT TYPE="IMAGE" SRC="URL" NAME="X" VALUE="Y">. URL is replaced with the internet address of the image you want to show up. X is replaced with the name of the button. Y is replaced with the value of the button.
Code
<FORM METHOD="POST" ACTION="script.cgi">

<INPUT TYPE="IMAGE" SRC="http://www.activejump.com/images/yes.jpg" NAME="button1" VALUE="Yes, I liked it.">
<p>
<INPUT TYPE="IMAGE" SRC="http://www.activejump.com/images/no.jpg" NAME="button2" VALUE="No, I did not like it.">

</FORM>
Output

Practice
Advertisements