Link telephone numbers for click to call
Created by: deep5050
While many modern mobile browsers automatically detect phone numbers and convert them to links, it’s a good idea to do this directly in your code. By manually tagging each phone number, you can ensure that phone numbers are always enabled for click to call and that they will be styled to match your site.
To mark a phone number as a link, use the tel: scheme. The syntax is simple:
example:
<a href="tel:+1-303-499-7111">+1 (303) 499-7111</a>
thanks,