|
For instance if my email address is info@ihatespam.com, my html code would look like this:
<a href="mailto:info@ihatespam.com">info@ihatespam.com</a>
That's really easy for spam bots to pick up! Not good!
What is good is to use special characters or character entities to replace each letter of that email.
For the letter "m" the character value is m
The letter "a" is represented by a
and so on.
So now my cloaked email address would look like this:
<a href="mailto:info@ ihatespam. com">info@ihatespam.com</a>
For a list of ASCII characters see: http://www.w3schools.com/tags/ref_ascii.asp.
|