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:
xxxxxxxxxx
1
2
<html>
3
<body>
4
<a href="tel:+44 7755 443322">+44 7766 443322</a>
5
</body>
6
</html>
Preview:
