How to make a call-able link using HTML ? Last Updated : 03 Oct, 2024 Summarize Comments Improve Suggest changes Share Like Article Like Report To make a callable link using HTML means creating a hyperlink that allows users to initiate a phone call directly from their devices. This is done using the <a> tag with the href attribute set to tel: followed by the phone number. When clicked, this link opens the phone dialer on supported devices, enabling users to call the specified number with ease.Approach: Basic Callable Link with Phone NumberCreate an anchor (<a>) tag with the href attribute set to tel: followed by the phone number.This link will open the phone dialer directly when clicked, allowing users to call the number.Add a descriptive text (e.g., "Call Us") inside the anchor tag to inform users about the action.Use plain phone numbers in the tel: attribute, which will be dialed exactly as specified on supported devices.This approach is simple and effective for creating clickable phone links across various devices.Syntax<a href="tel:(countrycode)(NUMBER)p(extension)"> Text </a>Example 1: In this example we creates a centered page with a heading, subheading, and a clickable link that allows users to call "GeeksforGeeks support" by clicking the link. html <!DOCTYPE html> <html> <head> <title> How to make a call-able link using HTML ? </title> <style> body { text-align: center; } h1 { color: green; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h3> Make a call-able link using HTML </h3> <a href="tel:9876765678"> Call to GeeksforGeeks support </a> </body> </html> Output:make a call-able link using HTML Example OutputExample 2: In this example we creates a centered page with a heading and subheading. It includes a clickable phone link with an icon that allows users to call a number with an extension by clicking on the link. html <!DOCTYPE html> <html> <head> <title> How to make a call-able link using HTML ? </title> <style> body { text-align: center; } h1 { color: green; } a { text-decoration: none; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h3> Make a call-able link using HTML </h3> <a href="tel:9876765678p107"> 📞 Help </a> </body> </html> Output:make a call-able link using HTML Example Output Comment More infoAdvertise with us Next Article How to make a call-able link using HTML ? H harshcooldude700 Follow Improve Article Tags : Web Technologies HTML Similar Reads How to make an HTML link to open a folder ? To create a link to a file or folder, you need to use an <a href > tag. HTML can be used to open a folder from our local storage. To open a folder from our local storage, use the 'href' attribute of HTML. In the href attribute, we specify the path of our folder. Syntax:<a href="Path"> 1 min read How to create a nofollow link using HTML5 ? A nofollow link s used by Google to specify that the Google search spider should not follow that link and mostly used for paid links. Nofollow links are links with a rel=ânofollowâ HTML tag applied to them. The nofollow tag tells search engines to ignore that link. The nofollow links do not pass Pag 1 min read How to Create a Link to Send Email in HTML ? Incorporating email links into HTML pages facilitates a smooth way for users to send a message directly from the webpage. We will see how to create these email links, making your web pages user-friendly and interactive.Using Mailto Protocol with Predefined SubjectTo create a link to send an email in 2 min read How to Create Navigation Links using HTML5 ? In this article, we create a navigation link by using the <nav> tag in the document. The nav element represents a section of the page whose purpose is to provide navigational links, either in the current document or to other documents. The links in the "nav" element may point to other webpages 1 min read How to make own Linktree using HTML, CSS and JavaScript ? Linktree is a tool that permits you to share multiple hyperlinks of various social media into one site. It gained popularity on Instagram, as Instagram does not allow you to share web links anywhere other than Stories and the 'bio' section of your profile page, which has a strict character limit. In 5 min read Like