Open In App

HTML <a> rev Attribute

The HTML <a> rev attribute is used to define the relationship between the linked document and the current document. This attribute is reversed of HTML rel attribute. It is not supported in HTML5. 

Syntax:



<a rev="value">

Attribute values:

Example: 






<!DOCTYPE html>
<html>
  
<body>
    <center>
    <h2>
        GeeksForGeeks
    </h2>
    <h2>
        HTML Anchor rev Attribute
    </h2>
    <p>Welcome to
        <a rev="start"
           href="https://ide.geeksforgeeks.org/">
           GeeksforGeeks
        </a>
    </p>
  
</body>
  
</html>

Output:

Supported Browsers:

Article Tags :