From the W3C - Helping Search Engines Index Your Website
It is helpful for search results to reference the beginning of the collection of documents in addition to the page hit by the search. You may help search engines by using the link element with rel="start" along with the title attribute. This link relationship tag is part of the metadata that appears within the <head></head> section of your web pages.
For example, the following link relationship is on page 22 of our Submission Reviews. At the moment, that is the last page in a series of web documents relating to our Editor's Comments during the submission review process.
<link rel="prev" href="/reviews/comments-21.asp">
<link rel="start" href="/reviews/" title="Submission Reviews - Editor's Comments">
Here is another example where links defined by the link element may describe the position of a document within a series of documents. In the following excerpt, links within our document titled Submission Reviews - Editor's Comments Page 11 point to the previous and next pages in the collection of documents:
<link rel="prev" href="/reviews/comments-10.asp">
<link rel="next" href="/reviews/comments-12.asp">
Authors may use the following recognized link types, listed here with their conventional interpretations. White space characters are not permitted within link types. These link types are case insensitive, i.e., Alternate has the same meaning as alternate.
User agents, search engines, etc. may interpret these link types in a variety of ways. For example, user agents may provide access to linked documents through a navigation bar.
<link rel="alternate" href="link-reference"><link rel="stylesheet" href="link-reference"><link rel="start" href="link-reference"><link rel="next" href="link-reference"><link rel="prev" href="link-reference"><link rel="contents" href="link-reference"><link rel="index" href="link-reference"><link rel="glossary" href="link-reference"><link rel="copyright" href="link-reference"><link rel="chapter" href="link-reference"><link rel="section" href="link-reference"><link rel="subsection" href="link-reference"><link rel="appendix" href="link-reference"><link rel="help" href="link-reference"><link rel="bookmark" href="link-reference">Required reading from the W3C - Information on Link Relationships
Last modified: 2008-01-20T23:10:20-0800