HTML | <a> rel Attribute
The rel attribute is used to specify the relationship between the current and the linked document. It is used only when href attribute present.
Syntax:
<a rel="value">
Attribute Values:
- alternate: It defines an alternate version of the document i.e. print page, translated or mirror.
- author: It defines the author of the document.
- bookmark: It specifies a related document.
- help: It specifies a help document.
- license: It defines copyright information for the document.
- next: It defines the next document in a selection.
- nofollow: It is used by Google, to specify that the Google search spider should not follow that link and mostly used for paid links.
- noreferrer: It is used to Specify that the browser should not send an HTTP referer header if the user follows the hyperlink.
- prefetch: It specifies that the target document should be cached.
- prev: It specifies the previous document in a selection.
- search: It specifies the search tool for the document.
- tag: It specifies a tag keyword for the current document.
Example:
<!DOCTYPE html> <html> <head> <title>HTML a rel Attribute</title> </head> <body> <p>Welcome to <a rel="noopener" GeeksforGeeks </a> </p> </body> </html> |
chevron_right
filter_none
Output:

Supported Browsers: The browser supported by HTML <a> rel Attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Safari
- Opera
Recommended Posts:
- HTML | low Attribute
- HTML | <img> src Attribute
- HTML | for Attribute
- HTML | min Attribute
- HTML | value Attribute
- HTML | dir Attribute
- HTML | <img> alt Attribute
- HTML | <map> name Attribute
- HTML | <li> value Attribute
- HTML | <a> download Attribute
- HTML | dirname Attribute
- HTML | <img> border Attribute
- HTML | <a> charset Attribute
- HTML | sizes Attribute
- HTML | default Attribute
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



