MR POSTMAN …
-
ADDING YOUR EMAIL ADDRESS TO YOUR WEBPAGE
Sometimes, it is good to add an email address to your website so that people
can give you feedback easily, ask you questions or just say hi. When you put an
email address link on a website, clicking on it will cause the browser's mail
program to automatically open a new message with your email address already in
the to: section of the email. The send email tag is another anchor tag.
The structure of the send email link is:
Here is the code for our webpage with our tech address used.
<HTML>
<a href="mailto:emailaddress">Name of person or organization</a>
<HEAD>
<TITLE>MY RAZZLE DAZZLE WEBPAGE</TITLE>
</HEAD>
<body bgcolor="#ffffff" text="#000000" link="#0000ff" vlink="#ff0000"
alink="#00ff00">
the good stuff goes here
<P>
<!-- remember to leave a space between the a and href in the link tag -
->
<a href="
<P>
<a href="mailto:cybmom02@cyberbeach.net">Email Cybermoms!</a>
</BODY>
</HTML>
And here is what the page looks like.