link要素でリンクナビゲーションを提供する
XHTMLソース
<link rel="start" href="index.html" title="最初のページ" />
<link rel="prev" href="prev.html" title="1つ前のページ" />
<link rel="next" href="next.html" title="1つ後のページ" />
<link rel="contents" href="contents.html" title="目次ページ" />
異なるバージョンの文書を関連付ける
XHTMLソース
<link rel="alternate" hreflang="en" title="English version" href="english.html" />
<link rel="alternate" media="print" title=" プリント用PDF 版" href="print.pdf" />
<link rel="alternate" type="application/rss+xml" title="RSS2.0" href="index.xml" />
文書制作者の連絡先を示す
XHTMLソース
<link rev="made" href="mailto:example@example.com" />
リンクタイプをプロファイルで拡張する
プロファイルのXHTMLソース例
<h1>Profile for (X)HTML link types</h1>
<dl>
<dt>uplevel</dt>
<dd>Link target represents the type of "directory above" of the document
</dd>
<dt>home</dt>
<dd>Link target represents the type of "home page" of the website</dd>
</dl>
head要素へのprofile属性使用例
<head profile="http://example.com/link_types.html">
W3C仕様書の参照箇所