Email link on contact page

is it possible to have the email link so people can click my email address and it go right to them sending an email?

same with the phone number on my contact page

Hi there,

Yes, you can link the email address by wrapping the email in an <a> tag then set the href value to mailto like this:


<a href="mailto:[email protected]">[email protected]</a>

As for the phone number, use tel for the href like this:

<a href="tel:+xxxxxxx">xxxxx</a>

https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_link_mailto

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.