Buttons

I will show you how to use buttons in a similar way that you can use links

<FORM METHOD="link" ACTION="URL HERE"> <INPUT TYPE="submit" VALUE="TEXT HERE"> </FORM>



Button (New Window)

This makes your button open a new window

<FORM METHOD="link" action="URL HERE" target="_blank"> <INPUT TYPE="submit" value="TEXT HERE"> </FORM>



Email Button

This button can be used to email

<FORM METHOD="link" ACTION="mailto:name@email.com"> <INPUT TYPE="submit" VALUE="TEXT HERE"></FORM>



Image Button

This code allows the button to be an image

<FORM method="link" action="LINK URL HERE"><INPUT TYPE="IMAGE" src="IMAGE URL HERE" height="150" width="150"></FORM>

Go to Forms >>