DEV Community

RajeshKumarYadav.com
RajeshKumarYadav.com

Posted on • Updated on

HTML : Anchors and Hyperlinks

Anchor tags are commonly used to link separate webpages, but they can also be used to link between different places in a single document, often within table of contents or even launch external applications. This topic explains the implementation and application of HTML anchor tags in various roles.

href - Specifies the destination address. It can be an absolute or relative URL, or the name of an anchor. An absolute URL is the complete URL of a website like http://example.com/. A relative URL points to another directory and/or document inside the same website, e.g. /about-us/ points to the directory “about-us” inside the root directory (/). When pointing to another directory without explicitly specifying the document, web servers typically return the document “index.html” inside that directory.

hreflang - Specifies the language of the resource linked by the href attribute (which must be present with this one). Use language values from BCP 47 for HTML5 and RFC 1766 for HTML 4.

rel - Specifies the relationship between the current document and the linked document.

target - Specifies where to open the link, e.g. in a new tab or window. Possible values are _blank, _self, _parent, _top, and framename (deprecated).

title - Specifies extra information about a link. The information is most often shown as a tooltip text when the cursor moves over the link. This attribute is not restricted to links, it can be used on almost all HTML tags.

download - Specifies that the target will be downloaded when a user clicks on the hyperlink. The value of the attribute will be the name of the downloaded file. There are no restrictions on allowed values, and the browser will automatically detect the correct file extension and add it to the file (.img, .pdf, etc.). If the value is omitted, the original filename is used.

Link to another site

This is the basic use of the <a> (anchor element) element:

<a href="http://example.com/">Link to example.com</a>
Enter fullscreen mode Exit fullscreen mode

It creates a hyperlink, to the URL http://example.com/ as specified by the href (hypertext reference) attribute, with the anchor text "Link to example.com". It would look something like the following:

Alt Text

To denote that this link leads to an external website, you can use the external link type:

<a href="http://example.com/" rel="external">example site</a>
Enter fullscreen mode Exit fullscreen mode

You can link to a site that uses a protocol other than HTTP. For example, to link to an FTP site, you can do,

<a href="ftp://example.com/">This could be a link to a FTP site</a>
Enter fullscreen mode Exit fullscreen mode

In this case, the difference is that this anchor tag is requesting that the user's browser connect to example.com using the File Transfer Protocol (FTP) rather than the Hypertext Transfer Protocol (HTTP).

Link to an anchor

Anchors can be used to jump to specific tags on an HTML page. The <a> tag can point to any element that has an id attribute. Anchors are mostly used to jump to a subsection of a page and are used in conjunction with header tags. Suppose you've created a page (page1.html) on many topics:

<h2>First topic</h2>
<p>Content about the first topic</p>
<h2>Second topic</h2>
<p>Content about the second topic</p>
Enter fullscreen mode Exit fullscreen mode

Once you have several sections, you may want to create a Table of Contents at the top of the page with quick-links (or bookmarks) to specific sections. If you gave an id attribute to your topics, you could then link to them

<h2 id="Topic1">First topic</h2>
<p>Content about the first topic</p>
<h2 id="Topic2">Second topic</h2>
<p>Content about the second topic</p>
Enter fullscreen mode Exit fullscreen mode

Now you can use the anchor in your table of contents:

<h1>Table of Contents</h1>
 <a href='#Topic1'>Click to jump to the First Topic</a>
 <a href='#Topic2'>Click to jump to the Second Topic</a>
Enter fullscreen mode Exit fullscreen mode

These anchors are also attached to the web page they're on (page1.html). So you can link across the site from one page to the other by referencing the page and anchor name. Remember, you can always <a href="page1.html#Topic1">look back in the First Topic</a> for supporting information.

Link to a page on the same site

You can use a relative path to link to pages on the same website.

<a href="/example">Text Here</a>
Enter fullscreen mode Exit fullscreen mode

The above example would go to the file example at the root directory (/) of the server.
If this link was on http://example.com, the following two links would bring the user to the same location

<a href="/page">Text Here</a>
<a href="http://example.com/page">Text Here</a>
Enter fullscreen mode Exit fullscreen mode

Both of the above would go to the page file at the root directory of example.com.

Link that dials a number

If the value of the href-attribute begins with tel:, your device will dial the number when you click it. This works on mobile devices or on computers/tablets running software – like Skype or FaceTime – that can make phone calls.

<a href="tel:11234567890">Call us</a>
Enter fullscreen mode Exit fullscreen mode

Most devices and programs will prompt the user in some way to confirm the number they are about to dial.

Open link in new tab/window

<a href="example.com" target="_blank">Text Here</a>
Enter fullscreen mode Exit fullscreen mode

The target attribute specifies where to open the link. By setting it to _blank, you tell the browser to open it in a new tab or window (per user preference).

SECURITY VULNERABILITY WARNING!
Using target="_blank" gives the opening site partial access to the window.opener object via JavaScript, which allows that page to then access and change the window.opener.location of your page and potentially redirect users to malware or phishing sites.
Whenever using this for pages you do not control, add rel="noopener" to your link to prevent the window.opener object from being sent with the request.

Link that runs JavaScript

Simply use the javascript: protocol to run the text as JavaScript instead of opening it as a normal link:

<a href="javascript:myFunction();">Run Code</a>
Enter fullscreen mode Exit fullscreen mode

You can also achieve the same thing using the onclick attribute:

<a href="#" onclick="myFunction(); return false;">Run Code</a>
Enter fullscreen mode Exit fullscreen mode

The return false; is necessary to prevent your page from scrolling to the top when the link to # is clicked. Make sure to include all code you'd like to run before it, as returning will stop execution of further code.
Also noteworthy, you can include an exclamation mark ! after the hashtag in order to prevent the page from scrolling to the top. This works because any invalid slug will cause the link to not scroll anywhere on the page, because it couldn't locate the element it references (an element with id="!"). You could also just use any invalid slug (such as #scrollsNowhere) to achieve the same effect. In this case, return false; is not required:

<a href="#!" onclick="myFunction();">Run Code</a>
Enter fullscreen mode Exit fullscreen mode

Should you be using any of this?
The answer is almost certainly no. Running JavaScript inline with the element like this is fairly bad practice. Consider using pure JavaScript solutions that look for the element in the page and bind a function to it instead. Also consider whether this element is really a button instead of a link. If so, you should use <button>.

Link that runs email client

Basic usage
If the value of the href-attribute begins with mailto: it will try to open an email client on click:

<a href="mailto:example@example.com">Send email</a>
Enter fullscreen mode Exit fullscreen mode

This will put the email address example@example.com as the recipient for the newly created email.

Cc and Bcc
You can also add addresses for cc- or bcc-recipients using the following syntax:

<a href="mailto:example@example.com?cc=john@example.com&bcc=jane@example.com">Send email</a>
Enter fullscreen mode Exit fullscreen mode

Subject and body text
You can populate the subject and body for the new email as well:

<a href="mailto:example@example.com?subject=Example+subject&body=Message+text">Send email</a>
Enter fullscreen mode Exit fullscreen mode

Those values must be URL encoded.

Clicking on a link with mailto: will try to open the default email client specified by your operating system or it will
ask you to choose what client you want to use. Not all options specified after the recipient's address are supported
in all email clients.

link for WhatsApp

WhatsApp's click to chat feature allows you to begin a chat with someone without having their phone number saved in your phone's address book. As long as you know this person’s phone number and they have an active WhatsApp account, you can create a link that will allow you to start a chat with them. By clicking the link, a chat with the person automatically opens. Click to chat works on both your phone and WhatsApp Web.

Create your own link
Use https://wa.me/ where the is a full phone number in international format. Omit any zeroes, brackets, or dashes when adding the phone number in international format.

Examples:

Use:

<a href="https://wa.me/1XXXXXXXXXX">WhatsApp me</a>
Enter fullscreen mode Exit fullscreen mode

Don't use:

<a href="https://wa.me/+001-(XXX)XXXXXXX">WhatsApp me</a>
Enter fullscreen mode Exit fullscreen mode

Create your own link with a pre-filled message
The pre-filled message will automatically appear in the text field of a chat. Use https://wa.me/whatsappphonenumber?text=urlencodedtext where whatsappphonenumber is a full phone number in international format and urlencodedtext is the URL-encoded pre-filled message.

Example:

<a href="https://wa.me/1XXXXXXXXXX?text=I'm%20interested%20in%20your%20car%20for%20sale">Chat with us</a>
Enter fullscreen mode Exit fullscreen mode

To create a link with just a pre-filled message, use https://wa.me/?text=urlencodedtext

Example:

<a href="https://wa.me/?text=I'm%20inquiring%20about%20the%20apartment%20listing`">Chat with us</a>
Enter fullscreen mode Exit fullscreen mode

After clicking on the link, you’ll be shown a list of contacts you can send your message to.

With all that being said, I highly recommend you keep learning!

Thank you for reading this article. Please feel free to connect with me on LinkedIn and Twitter.

Buy Me A Coffee

Top comments (0)