EN
HTML - how to make email address clickable?
6
points
In this article, we're going to have a look at how to create email link in pure HTML that opens mail client after click operation.
Quick solition:
Use mailto:
prefix for your email address link.
Practical exmaple:
// ONLINE-RUNNER:browser;
<!doctype>
<html>
<body>
<a href="mailto:my@email.com">my@email.com</a>
</body>
</html>