relAttribute
The rel attribute in HTML specifies the relationship between the current document and the resource linked by the element bearing the attribute. It is most commonly used on anchor (a), link, and area elements. The value of rel can contain one or more space-separated tokens, each indicating a particular relationship or instruction to the user agent.
Tokens define the nature of the link and how it should be treated. Common values include stylesheet
The exact meaning of a given token can depend on the element. For example, rel="stylesheet" on a
Validation and compatibility: Browsers generally support a wide range of rel values, and unrecognized tokens are
Examples: <a href="https://example.com" rel="noopener" target="_blank">Example</a> and <link rel="stylesheet" href="styles.css">.