EN
HTML - how to make phone number clickable?
3
points
In this article, we're going to have a look at how to create phone number link in pure HTML that opens call dialog after click operation.
Quick solition:
Use tel:
prefix for your phone number link.
Practical exmaple:
// ONLINE-RUNNER:browser;
<!doctype>
<html>
<body>
<a href="tel:+44 7755 443322">+44 7766 443322</a>
</body>
</html>
Preview: