Links

Here is the code to make text clickable so that your user can go to another page or site.

<A HREF="URL OF SITE">TEXT TO BE MADE CLICKABLE</A>


Links (New Window)

If you want your link to open in a new window use this code

<A HREF="URL OF SITE" TARGET="_blank">TEXT</a>


Email Link

This lets someone email you, just by clicking a link!

<A HREF="mailto:YOU@EMAIL.com">TEXT</A>


Email With Subject

Same as above, except you can specify a subject

<A HREF="mailto:YOU@EMAIL.com?subject=YOUR-SUBJECT">TEXT</A>


Redirection Links

This code will redirect someone to a different site after a certain amount of seconds.

<META HTTP-EQUIV="Refresh" CONTENT="6; URL=URL HERE">


Go to Buttons >>