link

<link> 要素は、文書を他のリソース(ファイル)と関連付けるために使用します。関連する書類のURLは、href 属性に空ではない有効なURLで指定する必要があります。関係性を示すrel 属性は必須です。

カテゴリー
メタデータ・コンテンツ
配置場所
メタデータ・コンテンツが配置可能な場所。<head> 要素内の<noscript> 要素の中。
内容
なし(空要素)
属性
グローバル属性

accesskey, autocapitalize, autofocus, class, contenteditable, data-*, dir, draggable, enterkeyhint, hidden, id, inputmode, is, itemid, itemprop, itemref, itemscope, itemtype, lang, nonce, spellcheck, style, tabindex, title, translate

サンプル

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>HTML5 › link</title>
<link rel="icon" href="favicon.png" sizes="16x16" type="image/png">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<h1>HTML5 › link</h1>
<p>
これはHTML5のlink要素のサンプルです。
</p>
</body>
</html>