Mobile app version of vmapp.org
Login or Join
Nimeshi995

: What is meaning of "nofollow me noreferrer" in a rel attribute of a link? Recently I was checking the source code of a website. I was expecting the links to do follow or no follow but what

@Nimeshi995

Posted in: #Hyperlink #Nofollow #Rel

Recently I was checking the source code of a website. I was expecting the links to do follow or no follow but what I observed was this:

<a href="http://www.website.com" rel="nofollow me noreferrer">


What is the meaning of this full line?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Nimeshi995

1 Comments

Sorted by latest first Latest Oldest Best

 

@Nimeshi995

Rel attribute can contain multiple value. Here is reference link.


The value of this attribute is a space-separated list of link types.


<a href="http://www.website.com" rel="nofollow"/>
<a href="http://www.website.com" rel="me"/>
<a href="http://www.website.com" rel="noreferrer"/>


So the short form is

<a href="http://www.website.com" rel="nofollow me noreferrer"/>


Nofollow is used when you don't want to pass Google trust factor(Pagerank and Anchor text) to that link.

Noreferrer is used when you want to hide your HTTP referral information, so other sites who use analytics tool don't know from where the traffic is coming.

Me is used when you want to reference your profile on any page. It can be anything like google plus, facebook, twitter and site/author profile as well.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme