E-mail Link
If you want someone to click on a link, then automatically be transported to their default email provider to send an email this is how you do it:
<a href="mailto:YOUREMAIL?subject=YOURSUBJECT">LINK</a>
This also has a subject, so when they click it, whatever subject you put will be on your email subject. Eg. Hosting. Just change YOUREMAIL and YOURSUBJECT and LINK.
This can also be made with an image:
<a href="mailto:YOUREMAIL?subject=YOURSUBJECT"><img src="IMAGE-URL" border="0"></a>
Putting the border="0" takes away the big purple border it will usually be given.
Back