How to create a nofollow link using HTML5 ?

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>
         w3wiki
     </h1>
     <h2>
         How to create a nofollow 
            link using HTML5? 
     </h2>
  
      
<p>Welcome to 
        <a rel="nofollow"
        href="https://ide.w3wiki.net/"
                w3wiki 
        </a
    </p>
   
</body
  
</html>                    


Output  

Supported Browsers are listed below:

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