Updates
  • Starting New Weekday Batch for Full Stack Java Development on 27 September 2025 @ 03:00 PM to 06:00 PM
  • Starting New Weekday Batch for MERN Stack Development on 29 September 2025 @ 04:00 PM to 06:00 PM
Join Course

Telephone Linking

• In HTML, you can create a telephone link to allow users to make phone calls by clicking on the link.
• To create a telephone link, use the anchor tag <a> and set the href attribute to the phone number preceded by tel:.
• For example, <a href="tel:+91 9990699111">Call Us</a> will create a link to call the number "+91 9990699111".
• When users click on the link, it will prompt them to make a phone call using their device's default calling app.
• Telephone links are particularly useful for mobile users, as they can directly initiate calls with a single click.

            
<!DOCTYPE html>
<html>
   <head>
      <title>Telephone Linking</title>
   </head>
   <body>
      <h1>Telephone linking</h1>
      <p>Click on the link to make Call</p>
      <ul>
         <li><a href="tel:+919990699111">Make a Call</a></li>
      </ul>
   </body>
</html>