Mobile app version of vmapp.org
Login or Join
Mendez628

: Rel="nofollow" in img tags? Does it make sense to have a rel="nofollow" attribute in img tag? Do search engines' crawlers use this attribute in some way for calculating PageRank score? What is

@Mendez628

Posted in: #Html #Rel #SearchEngines #Seo

Does it make sense to have a rel="nofollow" attribute in img tag?

Do search engines' crawlers use this attribute in some way for calculating PageRank score?

What is the practical sense for using it (if any)?

10.05% popularity Vote Up Vote Down


Login to follow query

More posts by @Mendez628

3 Comments

Sorted by latest first Latest Oldest Best

 

@Ogunnowo487

If you use rel="nofollow" attribute in img tag than you will miss the img alt tag from the GSEPR. nofollow is better for stop spamming from the comments or other links which are not related with <a> tag which may decrease your PageRank. So better is using a code for your image without rel="nofollow" like this: <img src="" alt="" class="alignleft"/>.

10% popularity Vote Up Vote Down


 

@Pierce454

The rel attribute is only for a and link elements. The nofollow value is to keep a web crawler from following that link (which might have affected the linked page's ranking based on your own). It keeps spammers commenting on blog posts from gaining any page ranking from linking from the blog (or discussion forum, etc.). It doesn't make sense for img elements and furthermore an img with a rel attribute is invalid, which may lower your relevancy score by a search engine.

10% popularity Vote Up Vote Down


 

@Berumen354

You should use rel="nofollow" on links that should not be rated for link popularity. You want this to be true for links that are not under your control (i.e. forum posts).

It does not matter if it is a text or img link. But in both cases only valid for the surrounding anchor tag.

Best example may be stackoverflow.com itself here: have a look at these Wikipedia links in your answers here. StackOverflow uses rel="nofollow" for it, because they cannot guarantee link quality for user generated content.

And even more important: it reduces spam-posts, because these links do not "count". So it does not make sense to spam for pushing link popularity.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme