Open In App

How to create a nofollow link using HTML5 ?

Last Updated : 05 May, 2025
Comments
Improve
Suggest changes
Like Article
Like
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://www.geeksforgeeks.org/community/"> 
                GeeksforGeeks 
        </a> 
    </p>
 
</body> 

</html>                    

 

Supported Browsers are listed below:

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

Next Article

Similar Reads