Edition for Web Developers — Last Updated 29 October 2025
a and area elementsa and area elementsalternate"author"bookmark"canonical"dns-prefetch"expect"external"help"icon"license"manifest"modulepreload"nofollow"noopener"noreferrer"opener"pingback"preconnect"prefetch"preload"privacy-policy"search"stylesheet"tag"terms-of-service"Links are a conceptual construct, created by a, area,
  form, and link elements, that represent
  a connection between two resources, one of which is the current Document. There are
  three kinds of links in HTML:
These are links to resources that are to be used to augment the current document, generally automatically processed by the user agent. All external resource links have a fetch and process the linked resource algorithm which describes how the resource is obtained.
These are links to other resources that are generally exposed to the user by the user agent so that the user can cause the user agent to navigate to those resources, e.g. to visit them in a browser or download them.
These are links to resources within the current document, used to give those resources special meaning or behavior.
For link elements with an href attribute and a
  rel attribute, links must be created for the keywords of the
  rel attribute, as defined for those keywords in the link types section.
Similarly, for a and area elements with an href attribute and a rel attribute, links must be created for the keywords of the
  rel attribute as defined for those keywords in the link types section. Unlike link elements, however,
  a and area elements with an href
  attribute that either do not have a rel attribute, or
  whose rel attribute has no keywords that are defined as
  specifying hyperlinks, must also create a hyperlink.
  This implied hyperlink has no special meaning (it has no link type)
  beyond linking the element's node document to the resource given by the element's href attribute.
Similarly, for form elements with a rel
  attribute, links must be created for the keywords of the rel
  attribute as defined for those keywords in the link types section.
  form elements that do not have a rel attribute,
  or whose rel attribute has no keywords that are defined as
  specifying hyperlinks, must also create a hyperlink.
  
A hyperlink can have one or more hyperlink annotations that modify the processing semantics of that hyperlink.
a and area elementsThe href
  attribute on a and area elements must have a value that is a valid
  URL potentially surrounded by spaces.
The href attribute on a and
  area elements is not required; when those elements do not have href attributes they do not create hyperlinks.
The target
  attribute, if present, must be a valid navigable target name or keyword. It gives the
  name of the navigable that will be used. 
The download
  attribute, if present, indicates that the author intends the hyperlink to be used for downloading a resource. The attribute may have a value; the
  value, if any, specifies the default filename that the author recommends for use in labeling the
  resource in a local file system. There are no restrictions on allowed values, but authors are
  cautioned that most file systems have limitations with regard to what punctuation is supported in
  filenames, and user agents are likely to adjust filenames accordingly.
Support in all current engines.
The ping attribute, if present, gives the URLs of the
  resources that are interested in being notified if the user follows the hyperlink. The value must
  be a set of space-separated tokens, each of which must be a valid non-empty
  URL whose scheme is an HTTP(S)
  scheme. 
element and the current document.">HTMLAnchorElement/relList
Support in all current engines.
The rel attribute on a and area
  elements controls what kinds of links the elements create. The attribute's value must be an
  unordered set of unique space-separated tokens. The allowed
  keywords and their meanings are defined below.
rel's supported tokens are the keywords defined in HTML link types which are allowed on a and area
  elements, impact the processing model, and are supported by the user agent. The possible supported tokens are noreferrer, noopener, and opener. rel's supported tokens must only include the tokens from this
  list that the user agent implements the processing model for.
The rel attribute has no default value. If the
  attribute is omitted or if none of the values in the attribute are recognized by the user agent,
  then the document has no particular relationship with the destination resource other than there
  being a hyperlink between the two.
The hreflang
  attribute on a elements that create hyperlinks, if
  present, gives the language of the linked resource. It is purely advisory. The value must be a
  valid BCP 47 language tag. [BCP47] 
The type
  attribute, if present, gives the MIME type of the linked resource. It is purely
  advisory. The value must be a valid MIME type string. 
The referrerpolicy attribute is a referrer
  policy attribute. Its purpose is to set the referrer policy used when
  following hyperlinks. [REFERRERPOLICY]
When an a or area element's activation behavior is
  invoked, the user agent may allow the user to indicate a preference regarding whether the
  hyperlink is to be used for navigation or whether the resource it
  specifies is to be downloaded.
In the absence of a user preference, the default should be navigation if the element has no
  download attribute, and should be to download the
  specified resource if it does.
The activation behavior of an a or area element
  element given an event event is:
If element has no href attribute,
   then return.
Let hyperlinkSuffix be null.
If element is an a element, and event's target is an img with an ismap attribute specified, then:
Let x and y be 0.
If event's isTrusted attribute is
     initialized to true, then set x to the distance in CSS
     pixels from the left edge of the image to the location of the click, and set
     y to the distance in CSS pixels from the top edge of the
     image to the location of the click.
If x is negative, set x to 0.
If y is negative, set y to 0.
Set hyperlinkSuffix to the concatenation of U+003F (?), the value of x expressed as a base-ten integer using ASCII digits, U+002C (,), and the value of y expressed as a base-ten integer using ASCII digits.
Let userInvolvement be event's user navigation involvement.
If the user has expressed a preference to download the hyperlink, then set
    userInvolvement to "browser UI".
That is, if the user has expressed a specific preference for downloading, this
    no longer counts as merely "activation".
If element has a download
   attribute, or if the user has expressed a preference to download the hyperlink, then download the hyperlink created by element with
   hyperlinkSuffix set to hyperlinkSuffix and
   userInvolvement set to
   userInvolvement.
Otherwise, follow the hyperlink created by element with hyperlinkSuffix set to hyperlinkSuffix and userInvolvement set to userInvolvement.
a and area elementshyperlink.toString()hyperlink.hrefReturns the hyperlink's URL.
Can be set, to change the URL.
hyperlink.originReturns the hyperlink's URL's origin.
hyperlink.protocolReturns the hyperlink's URL's scheme.
Can be set, to change the URL's scheme.
hyperlink.usernameReturns the hyperlink's URL's username.
Can be set, to change the URL's username.
hyperlink.passwordReturns the hyperlink's URL's password.
Can be set, to change the URL's password.
hyperlink.hostReturns the hyperlink's URL's host and port (if different from the default port for the scheme).
Can be set, to change the URL's host and port.
hyperlink.hostnameReturns the hyperlink's URL's host.
Can be set, to change the URL's host.
hyperlink.portReturns the hyperlink's URL's port.
Can be set, to change the URL's port.
hyperlink.pathnameReturns the hyperlink's URL's path.
Can be set, to change the URL's path.
hyperlink.searchReturns the hyperlink's URL's query (includes leading "?" if
    non-empty).
Can be set, to change the URL's query (ignores leading "?").
hyperlink.hashReturns the hyperlink's URL's fragment (includes leading "#" if
    non-empty).
Can be set, to change the URL's fragment (ignores leading "#").
Support in all current engines.
In some cases, resources are intended for later use rather than immediate viewing. To indicate
  that a resource is intended to be downloaded for use later, rather than immediately used, the
  download attribute can be specified on the
  a or area element that creates the hyperlink to that
  resource.
The attribute can furthermore be given a value, to specify the filename that user agents are
  to use when storing the resource in a file system. This value can be overridden by the `Content-Disposition` HTTP header's filename parameters.
  [RFC6266]
In cross-origin situations, the download
  attribute has to be combined with the `Content-Disposition` HTTP header, specifically with the
  attachment disposition type, to avoid the user being warned of possibly
  nefarious activity. (This is to protect users from being made to download sensitive personal or
  confidential information without their full understanding.)
The ping attribute is redundant with pre-existing
   technologies like HTTP redirects and JavaScript in allowing web pages to track which off-site
   links are most popular or allowing advertisers to track click-through rates.
However, the ping attribute provides these advantages
   to the user over those alternatives:
Ping-From` and `Ping-To` headersThe `Ping-From` and `Ping-To` HTTP request headers are included in hyperlink
  auditing requests. Their value is a URL, serialized.
Support in all current engines.
The following table summarizes the link types that are defined by this specification, by their corresponding keywords. This table is non-normative; the actual definitions for the link types are given in the next few sections.
In this section, the term referenced document refers to the resource identified by the element representing the link, and the term current document refers to the resource within which the element representing the link finds itself.
Except where otherwise specified, a keyword must not be specified more than once per rel attribute.
Some of the sections that follow the table below list synonyms for certain keywords. The
  indicated synonyms  must
  not be used in documents (for example, the keyword "copyright").
Keywords are always ASCII case-insensitive.
Thus, rel="next" is the same as rel="NEXT".
Keywords that are body-ok affect whether link elements are
  allowed in the body. The body-ok keywords are
  dns-prefetch,
  modulepreload,
  pingback,
  preconnect,
  prefetch,
  preload, and
  stylesheet.
New link types that are to be implemented by web browsers are to be added to this standard. The remainder can be registered as extensions.
| Link type | Effect on... | body-ok | Has ` Link` processing | Brief description | ||
|---|---|---|---|---|---|---|
| link | aandarea | form | ||||
| alternate | Hyperlink | not allowed | · | · | Gives alternate representations of the current document. | |
| canonical | Hyperlink | not allowed | · | · | Gives the preferred URL for the current document. | |
| author | Hyperlink | not allowed | · | · | Gives a link to the author of the current document or article. | |
| bookmark | not allowed | Hyperlink | not allowed | · | · | Gives the permalink for the nearest ancestor section. | 
| dns-prefetch | External Resource | not allowed | Yes | · | Specifies that the user agent should preemptively perform DNS resolution for the target resource's origin. | |
| expect | Internal Resource | not allowed | · | · | Expect an element with the target ID to appear in the current document. | |
| external | not allowed | Annotation | · | · | Indicates that the referenced document is not part of the same site as the current document. | |
| help | Hyperlink | · | · | Provides a link to context-sensitive help. | ||
| icon | External Resource | not allowed | · | · | Imports an icon to represent the current document. | |
| manifest | External Resource | not allowed | · | · | Imports or links to an application manifest. [MANIFEST] | |
| modulepreload | External Resource | not allowed | Yes | · | Specifies that the user agent must preemptively fetch the module script and store it in the document's module map for later evaluation. Optionally, the module's dependencies can be fetched as well. | |
| license | Hyperlink | · | · | Indicates that the main content of the current document is covered by the copyright license described by the referenced document. | ||
| next | Hyperlink | · | · | Indicates that the current document is a part of a series, and that the next document in the series is the referenced document. | ||
| nofollow | not allowed | Annotation | · | · | Indicates that the current document's original author or publisher does not endorse the referenced document. | |
| noopener | not allowed | Annotation | · | · | Creates a top-level traversable with a non-auxiliary browsing
     context if the hyperlink would otherwise create one that was auxiliary (i.e., has an
     appropriate targetattribute value). | |
| noreferrer | not allowed | Annotation | · | · | No ` Referer` (sic) header will be included.
     Additionally, has the same effect asnoopener. | |
| opener | not allowed | Annotation | · | · | Creates an auxiliary browsing context if the hyperlink would otherwise create
     a top-level traversable with a non-auxiliary browsing context (i.e.,
     has " _blank" astargetattribute value). | |
| pingback | External Resource | not allowed | Yes | · | Gives the address of the pingback server that handles pingbacks to the current document. | |
| preconnect | External Resource | not allowed | Yes | Yes | Specifies that the user agent should preemptively connect to the target resource's origin. | |
| prefetch | External Resource | not allowed | Yes | · | Specifies that the user agent should preemptively fetch and cache the target resource as it is likely to be required for a followup navigation. | |
| preload | External Resource | not allowed | Yes | Yes | Specifies that the user agent must preemptively fetch and cache the target resource for current navigation according to the potential destination given by the asattribute (and the priority associated with the corresponding destination). | |
| prev | Hyperlink | · | · | Indicates that the current document is a part of a series, and that the previous document in the series is the referenced document. | ||
| privacy-policy | Hyperlink | not allowed | · | · | Gives a link to information about the data collection and usage practices that apply to the current document. | |
| search | Hyperlink | · | · | Gives a link to a resource that can be used to search through the current document and its related pages. | ||
| stylesheet | External Resource | not allowed | Yes | · | Imports a style sheet. | |
| tag | not allowed | Hyperlink | not allowed | · | · | Gives a tag (identified by the given address) that applies to the current document. | 
| terms-of-service | Hyperlink | not allowed | · | · | Gives a link to information about the agreements between the current document's provider and users who wish to use the current document. | |
alternate"Support in one engine only.
The alternate keyword may be used with link,
  a, and area elements.
The meaning of this keyword depends on the values of the other attributes.
link element and the rel
   attribute also contains the keyword stylesheetThe alternate keyword modifies the meaning of the stylesheet keyword in the way described for that keyword. The
    alternate keyword does not create a link of its own.
Here, a set of link elements provide some style sheets:
<!-- a persistent style sheet --> 
< link  rel = "stylesheet"  href = "default.css" > 
<!-- the preferred alternate style sheet --> 
< link  rel = "stylesheet"  href = "green.css"  title = "Green styles" > 
<!-- some alternate style sheets --> 
< link  rel = "alternate stylesheet"  href = "contrast.css"  title = "High contrast" > 
< link  rel = "alternate stylesheet"  href = "big.css"  title = "Big fonts" > 
< link  rel = "alternate stylesheet"  href = "wide.css"  title = "Wide screen" > alternate keyword is used with the type attribute set to the value application/rss+xml or the value application/atom+xmlThe keyword creates a hyperlink referencing a syndication feed (though not necessarily syndicating exactly the same content as the current page).
The following link elements give syndication feeds for a blog:
< link  rel = "alternate"  type = "application/atom+xml"  href = "posts.xml"  title = "Cool Stuff Blog" > 
< link  rel = "alternate"  type = "application/atom+xml"  href = "posts.xml?category=robots"  title = "Cool Stuff Blog: robots category" > 
< link  rel = "alternate"  type = "application/atom+xml"  href = "comments.xml"  title = "Cool Stuff Blog: Comments" > Such link elements would be used by user agents engaged in feed autodiscovery,
     with the first being the default (where applicable).
The following example offers various different syndication feeds to the user, using
     a elements:
< p > You can access the planets database using Atom feeds:</ p > 
< ul > 
 < li >< a  href = "recently-visited-planets.xml"  rel = "alternate"  type = "application/atom+xml" > Recently Visited Planets</ a ></ li > 
 < li >< a  href = "known-bad-planets.xml"  rel = "alternate"  type = "application/atom+xml" > Known Bad Planets</ a ></ li > 
 < li >< a  href = "unexplored-planets.xml"  rel = "alternate"  type = "application/atom+xml" > Unexplored Planets</ a ></ li > 
</ ul > These links would not be used in feed autodiscovery.
The keyword creates a hyperlink referencing an alternate representation of the current document.
The nature of the referenced document is given by the hreflang, and type attributes.
If the alternate keyword is used with the hreflang attribute, and that attribute's value differs
    from the document element's language, it indicates that the referenced
    document is a translation.
If the alternate keyword is used with the type attribute, it indicates that the referenced document is
    a reformulation of the current document in the specified format.
The hreflang and type attributes can be combined when specified with the alternate keyword.
The following example shows how you can specify versions of the page that use alternative formats, are aimed at other languages, and that are intended for other media:
< link  rel = alternate  href = "/en/html"  hreflang = en  type = text/html  title = "English HTML" > 
< link  rel = alternate  href = "/fr/html"  hreflang = fr  type = text/html  title = "French HTML" > 
< link  rel = alternate  href = "/en/html/print"  hreflang = en  type = text/html  media = print  title = "English HTML (for printing)" > 
< link  rel = alternate  href = "/fr/html/print"  hreflang = fr  type = text/html  media = print  title = "French HTML (for printing)" > 
< link  rel = alternate  href = "/en/pdf"  hreflang = en  type = application/pdf  title = "English PDF" > 
< link  rel = alternate  href = "/fr/pdf"  hreflang = fr  type = application/pdf  title = "French PDF" > This relationship is transitive — that is, if a document links to two other documents
    with the link type "alternate", then, in addition to implying
    that those documents are alternative representations of the first document, it is also implying
    that those two documents are alternative representations of each other.
author"The author keyword may be used with link,
  a, and area elements. This keyword creates a hyperlink.
For a and area elements, the author
  keyword indicates that the referenced document provides further information about the author of
  the nearest article element ancestor of the element defining the hyperlink, if there
  is one, or of the page as a whole, otherwise.
For link elements, the author keyword indicates
  that the referenced document provides further information about the author for the page as a
  whole.
The "referenced document" can be, and often is, a mailto: URL giving the email address of the author. [MAILTO]
bookmark"The bookmark keyword may be used with a and
  area elements. This keyword creates a hyperlink.
The bookmark keyword gives a permalink for the nearest
  ancestor article element of the linking element in question, or of
  the section the linking element is most closely associated with, if
  there are no ancestor article elements.
The following snippet has three permalinks. A user agent could determine which permalink applies to which part of the spec by looking at where the permalinks are given.
 ...
 < body > 
  < h1 > Example of permalinks</ h1 > 
  < div  id = "a" > 
   < h2 > First example</ h2 > 
   < p >< a  href = "a.html"  rel = "bookmark" > This permalink applies to
   only the content from the first H2 to the second H2</ a > . The DIV isn't
   exactly that section, but it roughly corresponds to it.</ p > 
  </ div > 
  < h2 > Second example</ h2 > 
  < article  id = "b" > 
   < p >< a  href = "b.html"  rel = "bookmark" > This permalink applies to
   the outer ARTICLE element</ a >  (which could be, e.g., a blog post).</ p > 
   < article  id = "c" > 
    < p >< a  href = "c.html"  rel = "bookmark" > This permalink applies to
    the inner ARTICLE element</ a >  (which could be, e.g., a blog comment).</ p > 
   </ article > 
  </ article > 
 </ body > 
 ...canonical"The canonical keyword may be used with link
  element. This keyword creates a hyperlink.
The canonical keyword indicates that URL given by the href attribute is the preferred URL for the current document. That
  helps search engines reduce duplicate content, as described in more detail in The Canonical
  Link Relation. [RFC6596]
dns-prefetch"The dns-prefetch keyword may be used with
  link elements. This keyword creates an external
  resource link. This keyword is body-ok.
The dns-prefetch keyword indicates that preemptively
  performing DNS resolution for the origin of the specified resource is likely to be
  beneficial, as it is highly likely that the user will require resources located at that
  origin, and the user experience would be improved by preempting the latency costs
  associated with DNS resolution.
There is no default type for resources given by the dns-prefetch keyword.
The appropriate times to fetch and process this type of link are:
When the external resource link is created on a link element
   that is already browsing-context connected.
When the external resource link's link element becomes
   browsing-context connected.
When the href attribute of the link
   element of an external resource link that is already browsing-context
   connected is changed.
The fetch and process the linked resource steps for this type of linked resource,
  given a link element el, are:
  
Let url be the result of encoding-parsing a URL given
   el's href attribute's value, relative to
   el's node document.
If url is failure, then return.
Let partitionKey be the result of determining the network partition key given el's node document's relevant settings object.
The user agent should resolve an origin given partitionKey and url's origin.
As the results of this algorithm can be cached, future fetches could be faster.
expect"The expect keyword may be used with link
  elements. This keyword creates an internal resource
  link.
An internal resource link created by the expect
  keyword can be used to block rendering until the element that
  it indicates is connected to the document and fully
  parsed.
There is no default type for resources given by the expect
  keyword.
Whenever any of the following conditions occur for a link element
  el:
the expect internal resource link is created
   on el that is already browsing-context connected;
an expect internal resource link has been
   created on el and el becomes
   browsing-context connected;
an expect internal resource link has been
   created on el, el is already browsing-context connected, and
   el's href attribute is set, changed, or removed;
   or
an expect internal resource link has been
   created on el, el is already browsing-context connected, and
   el's media attribute is set, changed, or
   removed,
then process el.
To process internal resource link given a link element el,
  run these steps:
Let doc be el's node document.
Let url be the result of encoding-parsing a URL given
   el's href attribute's value, relative to
   doc.
If this fails, or if url does not equal doc's URL with exclude fragments set to false, then unblock rendering on el and return.
Let indicatedElement be the result of selecting the indicated part given doc and url.
If all of the following are true:
doc's current document readiness is "loading";
el creates an internal resource link;
el is browsing-context connected;
el is potentially render-blocking;
el's media attribute
     matches the environment; and
indicatedElement is not an element, or is on a
     stack of open elements of an HTML parser whose associated
     Document is doc,
then block rendering on el.
Otherwise, unblock rendering on el.
To process internal resource links given a Document doc:
For each expect link element link in
   doc's render-blocking element set, process link.
The following attribute change
  steps, given element, localName, oldValue,
  value, and namespace, are used to ensure expect link elements respond to dynamic id and name changes:
If namespace is not null, then return.
If element is in a stack of open elements of an HTML parser, then return.
If any of the following is true:
then process internal resource links given element's node document.
external"The external keyword may be used with a,
  area, and form elements. This keyword does not create a
  hyperlink, but annotates any other
  hyperlinks created by the element (the implied hyperlink, if no other keywords create one).
The external keyword indicates that the link is leading to a
  document that is not part of the site that the current document forms a part of.
help"The help keyword may be used with link,
  a, area, and form elements. This keyword creates a
  hyperlink.
For a, area, and form elements, the help keyword indicates that the referenced document provides further help
  information for the parent of the element defining the hyperlink, and its children.
In the following example, the form control has associated context-sensitive help. The user agent could use this information, for example, displaying the referenced document if the user presses the "Help" or "F1" key.
 < p >< label >  Topic: < input  name = topic >  < a  href = "help/topic.html"  rel = "help" > (Help)</ a ></ label ></ p > For link elements, the help keyword indicates that
  the referenced document provides help for the page as a whole.
For a and area elements, on some browsers, the help keyword causes the link to use a different cursor.
icon"Support in all current engines.
The icon keyword may be used with link elements.
  This keyword creates an external resource link.
Icons could be auditory icons, visual icons, or other kinds of icons.
The sizes keywords represent icon sizes in raw pixels (as
  opposed to CSS pixels).
An icon that is 50 CSS pixels wide intended for displays with a device pixel density of two device pixels per CSS pixel (2x, 192dpi) would have a width of 100 raw pixels. This feature does not support indicating that a different resource is to be used for small high-resolution icons vs large low-resolution icons (e.g. 50×50 2x vs 100×100 1x).
The any keyword represents that the
  resource contains a scalable icon, e.g. as provided by an SVG image.
The keywords specified on the sizes attribute must not
  represent icon sizes that are not actually available in the linked resource.
The following snippet shows the top part of an application with several icons.
<!DOCTYPE HTML> 
< html  lang = "en" > 
 < head > 
  < title > lsForums — Inbox</ title > 
  < link  rel = icon  href = favicon.png  sizes = "16x16"  type = "image/png" > 
  < link  rel = icon  href = windows.ico  sizes = "32x32 48x48"  type = "image/vnd.microsoft.icon" > 
  < link  rel = icon  href = mac.icns  sizes = "128x128 512x512 8192x8192 32768x32768" > 
  < link  rel = icon  href = iphone.png  sizes = "57x57"  type = "image/png" > 
  < link  rel = icon  href = gnome.svg  sizes = "any"  type = "image/svg+xml" > 
  < link  rel = stylesheet  href = lsforums.css > 
  < script  src = lsforums.js ></ script > 
  < meta  name = application-name  content = "lsForums" > 
 </ head > 
 < body > 
  ...For historical reasons, the icon keyword may be preceded by the
  keyword "shortcut". If the "shortcut" keyword is
  present, the rel attribute's entire value must be an
  ASCII case-insensitive match for the string "shortcut icon" (with a single U+0020 SPACE character between the tokens and
  no other ASCII whitespace).
license"The license keyword may be used with link,
  a, area, and form elements. This keyword creates a
  hyperlink.
The license keyword indicates that the referenced document
  provides the copyright license terms under which the main content of the current document is
  provided.
This specification does not specify how to distinguish between the main content of a document and content that is not deemed to be part of that main content. The distinction should be made clear to the user.
Consider a photo sharing site. A page on that site might describe and show a photograph, and the page might be marked up as follows:
<!DOCTYPE HTML> 
< html  lang = "en" > 
 < head > 
  < title > Exampl Pictures: Kissat</ title > 
  < link  rel = "stylesheet"  href = "/style/default" > 
 </ head > 
 < body > 
  < h1 > Kissat</ h1 > 
  < nav > 
   < a  href = "../" > Return to photo index</ a > 
  </ nav > 
  < figure > 
   < img  src = "/pix/39627052_fd8dcd98b5.jpg" > 
   < figcaption > Kissat</ figcaption > 
  </ figure > 
  < p > One of them has six toes!</ p > 
  < p >< small >< a  rel = "license"  href = "http://www.opensource.org/licenses/mit-license.php" > MIT Licensed</ a ></ small ></ p > 
  < footer > 
   < a  href = "/" > Home</ a >  | < a  href = "../" > Photo index</ a > 
   < p >< small > © copyright 2009 Exampl Pictures. All Rights Reserved.</ small ></ p > 
  </ footer > 
 </ body > 
</ html > In this case the license applies to just the photo (the main
   content of the document), not the whole document. In particular not the design of the page
   itself, which is covered by the copyright given at the bottom of the document. This could be made
   clearer in the styling (e.g. making the license link prominently positioned near the photograph,
   while having the page copyright in light small text at the foot of the page).
manifest"element indicates that the target resource is a Web app manifest.">Link_types/manifest
Support in one engine only.
The manifest keyword may be used with link elements.
  This keyword creates an external resource link.
The manifest keyword indicates the manifest file that provides
  metadata associated with the current document.
modulepreload"The modulepreload keyword may be used with
  link elements. This keyword creates an external resource link. This
  keyword is body-ok.
The modulepreload keyword is a specialized alternative
  to the preload keyword, with a processing model geared toward
  preloading module scripts. In particular, it uses the specific
  fetch behavior for module scripts (including, e.g., a different interpretation of the crossorigin attribute), and places the result into the
  appropriate module map for later evaluation. In
  contrast, a similar external resource link using the preload keyword would place the result in the preload cache, without
  affecting the document's module map.
Additionally, implementations can take advantage of the fact that module scripts declare their dependencies in order to fetch the specified module's
  dependency as well. This is intended as an optimization opportunity, since the user agent knows
  that, in all likelihood, those dependencies will also be needed later. It will not generally be
  observable without using technology such as service workers, or monitoring on the server side.
  Notably, the appropriate load or error events will occur after the specified module is fetched, and
  will not wait for any dependencies.
Unlike some other link relations, changing the relevant attributes (such as as, crossorigin, and
  referrerpolicy) of such a link
  does not trigger a new fetch. This is because the document's module map has already been populated by a previous
  fetch, and so re-fetching would be pointless.
The following snippet shows the top part of an application with several modules preloaded:
<!DOCTYPE html> 
< html  lang = "en" > 
< title > IRCFog</ title > 
< link  rel = "modulepreload"  href = "app.mjs" > 
< link  rel = "modulepreload"  href = "helpers.mjs" > 
< link  rel = "modulepreload"  href = "irc.mjs" > 
< link  rel = "modulepreload"  href = "fog-machine.mjs" > 
< script  type = "module"  src = "app.mjs" > 
... Assume that the module graph for the application is as follows:
Here we see the application developer has used modulepreload to declare all of the modules in their module graph,
   ensuring that the user agent initiates fetches for them all. Without such preloading, the user
   agent might need to go through multiple network roundtrips before discovering helpers.mjs, if technologies such as HTTP/2 Server Push are not in play. In
   this way, modulepreload link elements can be
   used as a sort of "manifest" of the application's modules.
The following code shows how modulepreload links can
   be used in conjunction with import() to ensure network fetching is done ahead of
   time, so that when import() is called, the module is already ready (but not
   evaluated) in the module map:
< link  rel = "modulepreload"  href = "awesome-viewer.mjs" > 
< button  onclick = "import('./awesome-viewer.mjs').then(m => m.view())" > 
  View awesome thing
</ button > nofollow"The nofollow keyword may be used with a,
  area, and form elements. This keyword does not create a
  hyperlink, but annotates any other
  hyperlinks created by the element (the implied hyperlink, if no other keywords create one).
The nofollow keyword indicates that the link is not endorsed
  by the original author or publisher of the page, or that the link to the referenced document was
  included primarily because of a commercial relationship between people affiliated with the two
  pages.
noopener"Support in all current engines.
Support in all current engines.
The noopener keyword may be used with a,
  area, and form elements. This keyword does not create a
  hyperlink, but annotates any other
  hyperlinks created by the element (the implied hyperlink, if no other keywords create one).
The keyword indicates that any newly created top-level traversable which results
  from following the hyperlink will not contain an auxiliary browsing
  context. E.g., the resulting Window's opener
  getter will return null.
This typically creates a top-level traversable with an auxiliary browsing
   context (assuming there is no existing navigable whose target name is "example"):
< a  href = help.html  target = example > Help!</ a > This creates a top-level traversable with a non-auxiliary browsing context (assuming the same thing):
< a  href = help.html  target = example  rel = noopener > Help!</ a > These are equivalent and only navigate the parent navigable:
< a  href = index.html  target = _parent > Home</ a > < a  href = index.html  target = _parent  rel = noopener > Home</ a > noreferrer"Support in all current engines.
Support in all current engines.
The noreferrer keyword may be used with a,
  area, and form elements. This keyword does not create a
  hyperlink, but annotates any other
  hyperlinks created by the element (the implied hyperlink, if no other keywords create one).
It indicates that no referrer information is to be leaked when following the link and also
  implies the noopener keyword behavior under the same
  conditions.
<a href="..." rel="noreferrer" target="_blank">
  has the same behavior as <a href="..." rel="noreferrer noopener" target="_blank">.
opener"The opener keyword may be used with a,
  area, and form elements. This keyword does not create a
  hyperlink, but annotates any other
  hyperlinks created by the element (the implied hyperlink, if no other keywords create one).
The keyword indicates that any newly created top-level traversable which results from following the hyperlink will contain an auxiliary browsing context.
In the following example the opener is used to allow the help
   page popup to navigate its opener, e.g., in case what the user is looking for can be found
   elsewhere. An alternative might be to use a named target, rather than _blank, but this has the potential to clash with existing names.
< a  href = "..."  rel = opener  target = _blank > Help!</ a > pingback"The pingback keyword may be used with link
  elements. This keyword creates an external resource
  link. This keyword is body-ok.
For the semantics of the pingback keyword, see
  Pingback 1.0. [PINGBACK]
preconnect"Support in all current engines.
The preconnect keyword may be used with link
  elements. This keyword creates an external resource
  link. This keyword is body-ok.
The preconnect keyword indicates that preemptively
  initiating a connection to the origin of the specified resource is likely to be
  beneficial, as it is highly likely that the user will require resources located at that
  origin, and the user experience would be improved by preempting the latency costs
  associated with establishing the connection.
There is no default type for resources given by the preconnect keyword.
A user agent must not delay the load event for this link type.
The appropriate times to fetch and process this type of link are:
When the external resource link is created on a link element
   that is already browsing-context connected.
When the external resource link's link element becomes
   browsing-context connected.
When the href attribute of the link
   element of an external resource link that is already browsing-context
   connected is changed.
When the crossorigin attribute of the
   link element of an external resource
   link that is already browsing-context connected is set, changed, or
   removed.
The fetch and process the linked resource steps for this type of linked resource,
  given a link element el, are to create link options from el and
  to preconnect given the result.
The process a link header step for this type of linked resource given a link processing options options are to preconnect given options.
To preconnect given a link processing options options:
If options's href is an empty string, return.
Let url be the result of encoding-parsing a URL given options's href, relative to options's base URL.
Passing the base URL instead of a document or environment is tracked by issue #9715.
If url is failure, then return.
If url's scheme is not an HTTP(S) scheme, then return.
Let partitionKey be the result of determining the network partition key given options's environment.
Let useCredentials be true.
If options's crossorigin is Anonymous and options's origin does not have the same origin as url's origin, then set useCredentials to false.
The user agent should obtain a connection given partitionKey, url's origin, and useCredentials.
This connection is obtained but not used directly. It will remain in the connection pool for subsequent use.
The user agent should attempt to initiate a preconnect and perform the full connection handshake (DNS+TCP for HTTP, and DNS+TCP+TLS for HTTPS origins) whenever possible, but is allowed to elect to perform a partial handshake (DNS only for HTTP, and DNS or DNS+TCP for HTTPS origins), or skip it entirely, due to resource constraints or other reasons.
The optimal number of connections per origin is dependent on the negotiated protocol, users current connectivity profile, available device resources, global connection limits, and other context specific variables. As a result, the decision for how many connections should be opened is deferred to the user agent.
prefetch"The prefetch keyword may be used with link
  elements. This keyword creates an external resource
  link. This keyword is body-ok.
The prefetch keyword indicates that preemptively fetching and caching the specified resource or same-site document is
  likely to be beneficial, as it is highly likely that the user will require this resource for
  future navigations.
There is no default type for resources given by the prefetch
  keyword.
The appropriate times to fetch and process this type of link are:
When the external resource link is created on a link element
   that is already browsing-context connected.
When the external resource link's link element becomes
   browsing-context connected.
When the href attribute of the link
   element of an external resource link that is already browsing-context
   connected is changed.
When the crossorigin attribute of the
   link element of an external resource
   link that is already browsing-context connected is set, changed, or
   removed.
The fetch and process the linked resource algorithm for prefetch links, given a link element
  el, is as follows:
If el's href attribute's value is the
   empty string, then return.
Let options be the result of creating link options from el.
Let request be the result of creating a link request given options.
If request is null, then return.
Set request's initiator to
   "prefetch".
Let processPrefetchResponse be the following steps given a response response and null, failure, or a byte sequence bytesOrNull:
If response is a network error, fire an event named error at el.
Otherwise, fire an event named load at el.
The user agent should fetch request, with processResponseConsumeBody set to processPrefetchResponse. User agents may delay the fetching of request to prioritize other requests that are necessary for the current document.
The process a link header steps for this type of linked resource are to do nothing.
preload"Support in one engine only.
The preload keyword may be used with link
  elements. This keyword creates an external resource
  link. This keyword is body-ok.
The preload keyword indicates that the user agent will
  preemptively fetch and cache the specified resource according
  to the potential destination given by the
  as attribute, and the priority given by the fetchpriority attribute, as it is highly likely that the
  user will require this resource for the current navigation.
  
User-agents might perform additional operations when a resource is loaded, such as preemptively decoding images or creating style sheets. However, these additional operations cannot have observable effects.
There is no default type for resources given by the preload
  keyword.
A user agent must not delay the load event for this link type.
The appropriate times to fetch and process the linked resource for such a link are:
When the external resource link is created on a link element
   that is already browsing-context connected.
When the external resource link's link element becomes
   browsing-context connected.
When the href attribute of the link
   element of an external resource link that is already browsing-context
   connected is changed.
When the as attribute of the link
   element of an external resource link that is already browsing-context
   connected is changed.
When the type attribute of the link
   element of an external resource link that is already browsing-context
   connected, but was previously not obtained due to the type attribute specifying an unsupported type for the request
   destination, is set, removed, or
   changed.
When the media attribute of the link
   element of an external resource link that is already browsing-context
   connected, but was previously not obtained due to the media attribute not
   matching the environment, is changed or
   removed.
A Document has a map of preloaded resources, which is an
  ordered map, initially empty.
A preload key is a struct. It has the following items:
same-origin", "cors", or
   "no-cors"
   A preload entry is a struct. It has the following items:
To consume a preloaded resource for Window window,
  given a URL url, a string destination, a string
  mode, a string credentialsMode, a string integrityMetadata, and
  onResponseAvailable, which is an algorithm accepting a response:
Let key be a preload key whose URL is url, destination is destination, mode is mode, and credentials mode is credentialsMode.
Let preloads be window's associated Document's map of
   preloaded resources.
If key does not exist in preloads, then return false.
Let entry be preloads[key].
Let consumerIntegrityMetadata be the result of parsing integrityMetadata.
Let preloadIntegrityMetadata be the result of parsing entry's integrity metadata.
If none of the following conditions apply:
consumerIntegrityMetadata is no metadata;
consumerIntegrityMetadata is equal to preloadIntegrityMetadata; or
This comparison would ignore unknown integrity options. See issue #116.
then return false.
A mismatch in integrity metadata between the preload and the consumer, even if both match the data, would lead to an additional fetch from the network.
It is important that network errors are added to the preload cache so that if a preload request results in an error, the erroneous response isn't re-requested from the network later. This also has security implications; consider the case where a developer specifies subresource integrity metadata on a preload request, but not the following resource request. If the preload request fails subresource integrity verification and is discarded, the resource request will fetch and consume a potentially-malicious response from the network without verifying its integrity. [SRI]
Remove preloads[key].
If entry's response is null, then set entry's on response available to onResponseAvailable.
Otherwise, call onResponseAvailable with entry's response.
Return true.
For the purposes of this section, a string type matches a string destination if the following algorithm returns true:
If type is an empty string, then return true.
If destination is "fetch", then return true.
Let mimeTypeRecord be the result of parsing type.
If mimeTypeRecord is failure, then return false.
If mimeTypeRecord is not supported by the user agent, then return false.
If any of the following are true:
destination is "audio" or "video", and mimeTypeRecord is an
     audio or video MIME type;
destination is a script-like destination and mimeTypeRecord is a JavaScript MIME type;
destination is "image" and
     mimeTypeRecord is an image MIME type;
destination is "font" and
     mimeTypeRecord is a font MIME type;
destination is "json" and
     mimeTypeRecord is a JSON MIME type;
destination is "style" and
     mimeTypeRecord's essence is
     text/css; or
destination is "track" and
     mimeTypeRecord's essence is
     text/vtt,
then return true.
Return false.
To create a preload key for a request request, return a new preload key whose URL is request's URL, destination is request's destination, mode is request's mode, and credentials mode is request's credentials mode.
To translate a preload destination given a string destination:
If destination is not "fetch", "font",
   "image", "script", "style",
   or "track", then return null.
Return the result of translating destination.
To preload given a link processing options options and an optional processResponse, which is an algorithm accepting a response:
If options's type doesn't match options's destination, then return.
If options's destination is
   "image" and options's source set is not null, then set options's href to the result of selecting an image source from options's source set.
Let request be the result of creating a link request given options.
If request is null, then return.
Let unsafeEndTime be 0.
Let entry be a new preload entry whose integrity metadata is options's integrity.
Let key be the result of creating a preload key given request.
If options's document is null, then
   set request's initiator type to
   "early hint".
Let controller be null.
Let reportTiming given a Document document be to
   report timing for controller given document's relevant
   global object.
Set controller to the result of fetching request, with processResponseConsumeBody set to the following steps given a response response and null, failure, or a byte sequence bodyBytes:
If bodyBytes is a byte sequence, then set response's body to bodyBytes as a body.
By using processResponseConsumeBody, we have extracted the entire body. This is necessary to ensure the preloader loads the entire body from the network, regardless of whether the preload will be consumed (which is uncertain at this point). This step then resets the request's body to a new body containing the same bytes, so that other specifications can read from it at the time of actual consumption, despite us having already done so once.
Otherwise, set response to a network error.
Set unsafeEndTime to the unsafe shared current time.
If options's document is not null, then call reportTiming given options's document.
If entry's on response available is null, then set entry's response to response; otherwise call entry's on response available given response.
If processResponse is given, then call processResponse with response.
Let commit be the following steps given a Document
    document:
If entry's response is not null, then call reportTiming given document.
Set document's map of preloaded resources[key] to entry.
If options's document is null, then set options's on document ready to commit. Otherwise, call commit with options's document.
The fetch and process the linked resource steps for this type of linked resource,
  given a link element el, are:
Update the source set for el.
Let options be the result of creating link options from el.
Let destination be the result of translating the keyword representing the state of el's as attribute.
If destination is null, then return.
Set options's destination to destination.
Preload options, with the following steps given a response response:
If response is a network error, fire an event named error at el. Otherwise, fire an event named
      load at el.
The actual browsers' behavior is different from the spec here, and the feasibility of changing the behavior has not yet been investigated. See issue #1142.
The process a link header step for this type of link given a link processing options options is to preload options.
privacy-policy"The privacy-policy keyword may be used with
  link, a, and area elements. This keyword creates a
  hyperlink.
The privacy-policy keyword indicates that the
  referenced document contains information about the data collection and usage practices that apply
  to the current document, as described in more detail in Additional Link Relation
  Types. The referenced document may be a standalone privacy policy, or a specific section of
  some more general document. [RFC6903]
search"The search keyword may be used with link,
  a, area, and form elements. This keyword creates a
  hyperlink.
The search keyword indicates that the referenced document
  provides an interface specifically for searching the document and its related resources.
OpenSearch description documents can be used with link elements and
  the search link type to enable user agents to autodiscover search
  interfaces. [OPENSEARCH]
stylesheet"The stylesheet keyword may be used with link
  elements. This keyword creates an external resource
  link that contributes to the styling processing model. This keyword is
  body-ok.
The specified resource is a CSS style sheet that describes how to present the document.
Support in one engine only.
If the alternate keyword is also specified on the
  link element, then the link is an
  alternative style sheet; in this case, the title attribute
  must be specified on the link element, with a non-empty value.
The default type for resources given by the stylesheet
  keyword is text/css.
A link element of this type is implicitly potentially render-blocking
  if the element was created by its node document's parser.
tag"The tag keyword may be used with a and
  area elements. This keyword creates a hyperlink.
The tag keyword indicates that the tag that the
  referenced document represents applies to the current document.
Since it indicates that the tag applies to the current document, it would be inappropriate to use this keyword in the markup of a tag cloud, which lists the popular tags across a set of pages.
This document is about some gems, and so it is tagged with "https://en.wikipedia.org/wiki/Gemstone" to unambiguously categorize it as applying
   to the "jewel" kind of gems, and not to, say, the towns in the US, the Ruby package format, or
   the Swiss locomotive class:
<!DOCTYPE HTML> 
< html  lang = "en" > 
 < head > 
  < title > My Precious</ title > 
 </ head > 
 < body > 
  < header >< h1 > My precious</ h1 >  < p > Summer 2012</ p ></ header > 
  < p > Recently I managed to dispose of a red gem that had been
  bothering me. I now have a much nicer blue sapphire.</ p > 
  < p > The red gem had been found in a bauxite stone while I was digging
  out the office level, but nobody was willing to haul it away. The
  same red gem stayed there for literally years.</ p > 
  < footer > 
   Tags: < a  rel = tag  href = "https://en.wikipedia.org/wiki/Gemstone" > Gemstone</ a > 
  </ footer > 
 </ body > 
</ html > In this document, there are two articles. The "tag"
   link, however, applies to the whole page (and would do so wherever it was placed, including if it
   was within the article elements).
<!DOCTYPE HTML> 
< html  lang = "en" > 
 < head > 
  < title > Gem 4/4</ title > 
 </ head > 
 < body > 
  < article > 
   < h1 > 801: Steinbock</ h1 > 
   < p > The number 801 Gem 4/4 electro-diesel has an ibex and was rebuilt in 2002.</ p > 
  </ article > 
  < article > 
   < h1 > 802: Murmeltier</ h1 > 
   < figure > 
    < img  src = "https://upload.wikimedia.org/wikipedia/commons/b/b0/Trains_de_la_Bernina_en_hiver_2.jpg" 
         alt = "The 802 was red with pantographs and tall vents on the side." > 
    < figcaption > The 802 in the 1980s, above Lago Bianco.</ figcaption > 
   </ figure > 
   < p > The number 802 Gem 4/4 electro-diesel has a marmot and was rebuilt in 2003.</ p > 
  </ article > 
  < p  class = "topic" >< a  rel = tag  href = "https://en.wikipedia.org/wiki/Rhaetian_Railway_Gem_4/4" > Gem 4/4</ a ></ p > 
 </ body > 
</ html > terms-of-service"The terms-of-service keyword may be used with
  link, a, and area elements. This keyword creates a
  hyperlink.
The terms-of-service keyword indicates that the
  referenced document contains information about the agreements between the current document's
  provider and users who wish to use the current document, as described in more detail in
  Additional Link Relation Types. [RFC6903]
Some documents form part of a sequence of documents.
A sequence of documents is one where each document can have a previous sibling and a next sibling. A document with no previous sibling is the start of its sequence, a document with no next sibling is the end of its sequence.
A document may be part of multiple sequences.
next"The next keyword may be used with link,
  a, area, and form elements. This keyword creates a
  hyperlink.
The next keyword indicates that the document is part of a
  sequence, and that the link is leading to the document that is the next logical document in the
  sequence.
prev"The prev keyword may be used with link,
  a, area, and form elements. This keyword creates a
  hyperlink.
The prev keyword indicates that the document is part of a
  sequence, and that the link is leading to the document that is the previous logical document in
  the sequence.
Extensions to the predefined set of link types may be registered on the microformats page for existing rel values. [MFREL]
Anyone is free to edit the microformats page for existing rel values at any time to add a type. Extension types must be specified with the following information:
The actual value being defined. The value should not be confusingly similar to any other defined value (e.g. differing only in case).
If the value contains a U+003A COLON character (:), it must also be an absolute URL.
linkOne of the following:
link elements.link element; it creates a
     hyperlink.link element; it creates an external
     resource link.a and areaOne of the following:
a and area elements.a and area elements; it creates a
     hyperlink.a and area elements; it creates
     an external resource link.a and area elements; it annotates other hyperlinks
     created by the element.formOne of the following:
form elements.form elements; it creates a
     hyperlink.form elements; it creates an external
     resource link.form elements; it annotates other hyperlinks created by the
     element.A short non-normative description of what the keyword's meaning is.
A link to a more detailed description of the keyword's semantics and requirements. It could be another page on the wiki, or a link to an external page.
A list of other keyword values that have exactly the same processing requirements. Authors should not use the values defined to be synonyms, they are only intended to allow user agents to support legacy content. Anyone may remove synonyms that are not used in practice; only names that need to be processed as synonyms for compatibility with legacy content are to be registered in this way.
One of the following:
If a keyword is found to be redundant with existing values, it should be removed and listed as a synonym for the existing value.
If a keyword is registered in the "proposed" state for a period of a month or more without being used or specified, then it may be removed from the registry.
If a keyword is added with the "proposed" status and found to be redundant with existing values, it should be removed and listed as a synonym for the existing value. If a keyword is added with the "proposed" status and found to be harmful, then it should be changed to "discontinued" status.
Anyone can change the status at any time, but should only do so in accordance with the definitions above.
Types defined as extensions in the microformats
  page for existing rel values with the status "proposed" or "ratified" may be used with the
  rel attribute on link, a, and area
  elements in accordance to the "Effect on..." field. [MFREL]