AntonyLoose / resume-website

My resume
0 stars 0 forks source link

Plain text emails #1

Closed AntonyLoose closed 2 months ago

AntonyLoose commented 2 months ago

Before you host the website, make sure to encode emails in some way so that web scrappers don't harvest all your references emails.

AntonyLoose commented 2 months ago

You can use something like:

<p>If you have any questions or suggestions, please write an e-mail to:
us<!-- abc@def -->er@domai<!-- @abc.com -->n.com. 
</p>

to prevent bots from scraping the email.

AntonyLoose commented 2 months ago

Do this to:

<style type="text/css">
span.spamprotection {display:none;}
</style>

<p>If you have any questions or suggestions, please write an e-mail to:
user<span class="spamprotection">CHARACTER SEQUENCE</span>@domain.com. 
</p>