Several new rel attributes for the <a> and <link> elements have been proposed for HTML5. Existing attributes from HTML4 may be redefined somewhat. They include:
-
<rel='alternate'>
- may be used with
link
,a
, andarea
elements - meaning depends on the values of the other attributes such as
'stylesheet'
or'type'
- may be used with
-
<rel='icon'>
- may be used with
link
elements - specified resource is an icon representing the page or site
- may be used with
-
<rel='nofollow'>
- may be used with
a
andarea
elements - the link is not endorsed by the original author or publisher of the page
- may be used with
-
<rel='prefetch'>
- may be used with
link
elements - preemptively fetches and caches the specified resource
- may be used with
-
<rel='archives'>
- may be used with
link
,a
, andarea
elements - indicates that the referenced document describes a collection of records, documents, or other materials of historical interest.
- may be used with
-
<rel='external'>
- may be used with
a
andarea
elements - indicates that the link is leading to a document that is not part of the current site
- may be used with
-
<rel='license'>
- may be used with
link
,a
, andarea
elements - the referenced document provides the copyright license terms
- may be used with
-
<rel='noreferrer'>
- may be used with
link
,a
, andarea
elements - user agent must not include a
Referrer
HTTP headerĀ in the request
- may be used with
-
<rel='pingback'>
- may be used with
link
elements - usage is still being defined, but it creates a hyperlink
- may be used with
-
<rel='sidebar'>
- may be used with
link
,a
, andarea
elements - the referenced document, if retrieved, is intended to be shown in a secondary browsing context (if possible). It isn’t clear if this means a new tab, a new window, or an iFrame.
- may be used with
-
<rel='tag'>
- may be used with
link
,a
, andarea
elements - the tag that the referenced document represents applies to the current document
- may be used with
The best I can tell from looking at the current specs, these relative types of links are current in the HTML5 proposal. I hope I haven’t missed any.