Use this code to make a HTML button which causes the button to act as a hyperlink or a download link.
This linking method is especially useful if the hyperlink is an affiliate link, because no text will display in the StatusBar.
How to Code a HTML Hyperlink Button
Source
<form><input type="button" value="Free Web Templates" onClick="window.location.href='http://freewebtemplates.me/'"></form>
Output
Notes
Replace the words Free Web Templates with what ever text you want to appear on the button.
Replace the URL http://freewebtemplates.me with your own destination URL.