A simple tutorial on how to create click-to-call links for mobile devices.
Making click to call links and buttons is very simple. To create a click to call link for (212) 333-4444:
1) Instead of a standard URL we use ‘tel:’
2) Followed by a + and the country code ‘+1’
3) Then the complete number ‘212333444’.
For a complete click to call URL:
1 |
tel:+12123334444 |
Then we take that call URL and insert it into a standard link’s ‘href’ option.
Click to Call Button or Image:
1 |
<a href="tel:+12123334444"><img src="http://www.url.com/to/image.jpg" border="0"></a> |
Click to Call Text Link:
1 |
<a href="tel:+12123334444">Click here to call now!</a> |
Click to Call Text Number:
1 |
<a href="tel:+12123334444">(212) 333-4444</a> |