How to create a nofollow link using HTML5 ? Last Updated : 05 May, 2025 Summarize Comments Improve Suggest changes Share 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 ChromeInternet ExplorerFirefoxOperaSafari Comment More infoAdvertise with us Next Article How to create a nofollow link using HTML5 ? M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-Misc Similar Reads How to Create Navigation Links using HTML5 ? In this article, we create a navigation link by using the <nav> tag in the document. The nav element represents a section of the page whose purpose is to provide navigational links, either in the current document or to other documents. The links in the "nav" element may point to other webpages 1 min read How to Create a Hyperlink in HTML? If we want to navigate from one page to another then Hyperlink comes into play. It provides you the link to navigate to another page, on hovering that link the cursor turns into a little hand. Hyperlink enables us to connect one page to another, navigate to specific sections, or even open applicatio 2 min read How to disable a link using only CSS? To disable a link using CSS, pointer-events can be used, which sets whether the element in the page has to respond or not while clicking on elements. The pointer-events property is used to specify whether the element should respond to pointer events or not. The following example illustrates this app 3 min read How to Create a Link to Send Email in HTML ? Incorporating email links into HTML pages facilitates a smooth way for users to send a message directly from the webpage. We will see how to create these email links, making your web pages user-friendly and interactive.Using Mailto Protocol with Predefined SubjectTo create a link to send an email in 2 min read How to Find & Add Nofollow Links to your Website in HTML ? The nofollow attribute in links is a crucial tool for controlling how search engine crawlers interact with your website's content. By adding the nofollow attribute to specific links, you instruct search engine bots not to follow those links, preventing them from spreading content to linked pages. Th 2 min read Like