Make a call-able link in HTML | Call-able link
How to make a call-able link in HTML
Html provide an easy way to make a call able link. You can add this link to your blog or site.
Thes step will create a call able link.
- If you already know about html it is very easy for your.
- Create a link using anchor tag <a>
- In the href area put tel:your number
- Between <a> and </a> put your your name, number or some text to make it click able.
Example
<a href="tel:987654321" >Call me</a>
This will show you some thing like that
Example
<a href="tel:987654321" >9+987654321</a>
This will show you some thing like that
When you click the link it will redirect you to the dial pad and the number will be entered in the log automatically.
Warning
Do not use + plus sign in the href with the number. Just simply entered your number and when you click on the link it will redirect you to the dial pad.
Comments
Post a Comment