How to use form buttons as hyperlinks, dressing them up a bit. Consider the following code:
<form method="post" action="yourpage.htm">
<div>
<input type="submit" value="Click Here to visit a page" style="font-family:arial; color:FFFFFF; font-weight:bold; background-color:green;">
</div></form>
Seeing it in action:

If you don’t like the looks of the standard form button modified like this you can use styles to modify simple hyperlinks as well.

<a href="somepage.htm">
<span style="font-family:Arial; font-weight:bold; text-decoration:none; color:FFFFFF; background-color:blue;">
Click Here For More Details
</span></a>

Click Here For More Details


Anregung: bravenet.com