| |
How to make an email link.
An email link is created in almost the same fashion as a html link
but it is much simpler. You use the same <a> tag with the
href attribute but you link it to a mailto instead of a path. See
below.
<a href="mailto:jared@jaredshelp.com">Jared</a>
That's it!! When the name is clicked, a new email will be launched
in an email program with the email address already filled in.
Now lets go to Step
3
|