<a href="ma... om">ct... ess</a>
It's said to be the same as :
<a href="mailto:[email protected]'>contact</a>
But can work against email harvesting robot.
<a href="ma... om">ct... ess</a>
It's said to be the same as :
<a href="mailto:[email protected]'>contact</a>
But can work against email harvesting robot.
They're numeric character entities, trying to trick spiders into not seeing "mailto" or characters in the form of an email address. And as an anti-harvesting strategy, it probably hasn't worked since 1997 or so. :-)
This:
<a href="ma... om">ct... ess</a>
makes it a little difficult for email harvesting than its counter part:
<a href="mailto:[email protected]'>contact</a>
However, there are ways to decrypt even that so this is not that much useful in practice :(
It assumes that spambot spiders treat webpages as text to regex match against instead of performing the most basic HTML parsing.