Home > OS >  How to make an Email link in html
How to make an Email link in html

Time:01-03

I want to make an Email link which direct to my Email.

code:

<a  href="https://mail.google.com/mail/?view=cm&fs=1&tf=1&[email protected]' target='_blank' rel='noreferrer'">Email</a>

Screenshot enter image description here

I want to direct to Gmail.com and ready to send Email with my Email address.

CodePudding user response:

<a href='https://mail.google.com/mail/?view=cm&fs=1&tf=1&[email protected]' target='_blank' rel='noreferrer'>Email</a>
  • Related