Buttons


Regular, Pop-Up Button

<INPUT TYPE="button" VALUE="TEXT HERE" onClick='alert("TEXT")'></FORM>

Link Button

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

Email Button

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

Link Button With Color

<FORM METHOD="link" ACTION="URL HERE"> <INPUT TYPE="submit" VALUE="TEXT HERE" style="font-family:FONT" style="border style:solid" style="background:COLOR" style="color:COLORHERE"> </FORM>

TARGETING Link Button

<FORM METHOD="link" action="URL HERE" target="TARGET NAME HERE"> <INPUT TYPE="submit" value="TEXT HERE" style="font-family:FONT" style="border style:solid" style="background:COLOR" style="color:COLORHERE"> </FORM>

Colored Link Button with Image

<FORM method="link" action="LINK URL HERE"><INPUT TYPE="IMAGE" src="IMAGE URL HERE" height="80" width="80" style="border style:solid" style="color:COLORHERE"></FORM>


Button With Cool Hover

<applet code="fphover.class" codebase="http://members.xoom.com/spicegraphs/_fpclass/" width=120 height=24> <param name="text" value="Click here"> <param name="COLOR" value="#dda0dd"> <param name="HOVERCOLOR" value="#9370db"> <param name="textcolor" value="#FFFFFF"> <param name="effect" value="glow"> <param name="url" value="URL GOES HERE!" valuetype="ref"> <param name="font" value="Dialog"> <param name="fontstyle" value="regular"> <param name="fontsize" value="10"></applet>
The ONLY thing you should change is where it says
"URL GOES HERE!", thats where you put the URL. If you wanna change the colors, change where it says "#dda0dd" and "#FFFFFF" to another Hex Code (see Fonts Page). You can read the code better once its larger on your page. If you want to TARGET the buttons to a frame, add in target=FRAMENAME on the 4th-to-last line, so it looks like: <param name="url" value="URL HERE" valuetype="ref" target=NAME>
Related Sites