Open In App

How to create a nofollow link using HTML5 ?

Last Updated : 30 Sep, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

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 PageRank they likely don’t impact search engine rankings.

Syntax:

<a rel="value"> 

Example:  

HTML




<!DOCTYPE html> 
<html
  
<head
    <title>
        How to create a nofollow 
        link using HTML5 ?
    </title
</head
  
<body style="text-align:center">  
     <h1>
         GeeksforGeeks
     </h1>
     <h2>
         How to create a nofollow 
            link using HTML5? 
     </h2>
  
      
<p>Welcome to 
        <a rel="nofollow"
        href="https://ide.geeksforgeeks.org/"
                GeeksforGeeks 
        </a
    </p>
   
</body
  
</html>                    


Output  

Supported Browsers are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads