No history yet

Introduction to Nofollow Links

The Unspoken Link

Think of a link on the web as a vote of confidence. When one website links to another, search engines like Google see it as a recommendation. This recommendation, often called "link equity" or "link juice," can help the linked page rank higher in search results. It's a fundamental part of how the internet is organized.

But what if you want to link to a site without giving it your vote? Maybe it's a site you don't fully trust, an advertisement, or a link in a user-generated comment. This is where the nofollow attribute comes in.

A 'nofollow' link is a way to tell search engines: "I'm linking to this page, but don't consider it an endorsement. Don't pass any of my site's authority to it."

In the code of a webpage, a standard link looks like this:

<a href="http://www.example.com">Example Website</a>

To make it a nofollow link, a small piece of information is added: rel="nofollow". The rel stands for "relationship."

<a href="http://www.example.com" rel="nofollow">Example Website</a>

For a user clicking the link, there's no visible difference. Both links work exactly the same way. The instruction is purely for search engine crawlers.

A Brief History

The nofollow attribute was introduced by Google back in 2005. The main reason was to combat comment spam. Bloggers were finding their comment sections flooded with people posting links to their own websites, hoping to get a ranking boost.

By implementing nofollow, website owners could automatically apply the attribute to all links in their comments sections. This removed the incentive for spammers, as the links would no longer pass any ranking value.

Lesson image

Over time, the use of nofollow has evolved. In 2019, Google introduced two new link attributes to provide more specific information:

  • rel="sponsored": This should be used for paid or sponsored links, like advertisements.
  • rel="ugc": This stands for "user-generated content" and is the new standard for comment sections and forum posts.

Google now treats nofollow as a "hint" rather than a strict directive. This means it might still choose to crawl the link or use it for other purposes, but it generally won't pass ranking credit.

Dofollow vs. Nofollow

Any link without a nofollow (or sponsored, or ugc) attribute is considered a "dofollow" link. There's no actual rel="dofollow" attribute; it's simply the default state for a hyperlink. These are the links that pass authority and help with SEO.

Here's a quick breakdown of the key differences:

FeatureDofollow LinkNofollow Link
PurposeTo pass authority and endorse a page.To link without passing authority.
SEO ImpactCan improve search engine rankings.Generally does not impact rankings.
HTML Code<a href="..."><a href="..." rel="nofollow">
Common UseLinking to trusted, relevant resources.Comments, forums, sponsored content.

Understanding this distinction is crucial for anyone managing a website. You want to earn dofollow links from reputable sites to build your authority. At the same time, you should use nofollow links on your own site for content you don't control, like comments, or for paid advertisements to comply with search engine guidelines.

Quiz Questions 1/5

What was the original primary reason for the introduction of the rel="nofollow" attribute?

Quiz Questions 2/5

Which rel attribute is specifically recommended for links within user-generated content, like forum posts or blog comments?

Knowing when and why to use different types of links is a key skill in managing a website's presence online.