head

<html> 要素の最初の要素として配置します。内容には1つ以上のメタデータ要素(1つは<title> 要素)を配置します。ただし、<iframe> 要素srcdoc 属性で指定される文書、またはタイトル情報が上位プロトコルから手に入れられる場合は0個以上の要素を配置します。

カテゴリー
なし
配置場所
html 要素の最初の要素。
内容
1つ以上のメタデータ(1つはtitle)。iframesrcdoc 属性で指定される文書、タイトルが上位プロトコルから与えられる文書は0個以上。
属性
グローバル属性

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 › head</title>
</head>
<body>
<h1>HTML5 › head</h1>
<p>
これはHTML5のhead要素のサンプルです。
</p>
</body>
</html>