diff options
Diffstat (limited to 'files/ja/web/html/element/head/index.html')
-rw-r--r-- | files/ja/web/html/element/head/index.html | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/files/ja/web/html/element/head/index.html b/files/ja/web/html/element/head/index.html new file mode 100644 index 0000000000..fcd05172e1 --- /dev/null +++ b/files/ja/web/html/element/head/index.html @@ -0,0 +1,131 @@ +--- +title: '<head>: 文書メタデータ (ヘッダー) 要素' +slug: Web/HTML/Element/head +tags: + - Element + - HTML + - HTML 文書メタデータ + - 'HTML:メタデータコンテンツ' + - Reference + - Web + - ウェブ + - 要素 +translation_of: Web/HTML/Element/head +--- +<div>{{HTMLRef}}</div> + +<p><span class="seoSummary"><strong>HTML の <code><head></code> 要素</strong>は、文書に関する機械可読な情報 ({{glossary("metadata", "メタデータ")}})、たとえば<a href="/ja/docs/Web/HTML/Element/title">題名</a>、<a href="/ja/docs/Web/HTML/Element/script">スクリプト</a>、<a href="/ja/docs/Web/HTML/Element/style">スタイルシート</a>などを含みます。</span></p> + +<div class="blockIndicator note"> +<p><strong>メモ:</strong> <code><head></code> は機械処理のための情報を保持するためのものであり、人間が読むためのものではありません。人間が読むための情報、例えば最上位のヘッダーや著者のリストのためのものは、 {{HTMLElement("header")}} 要素を参照してください。</p> +</div> + +<table class="properties"> + <tbody> + <tr> + <th scope="row"><a href="/ja/docs/Web/HTML/Content_categories">コンテンツカテゴリ</a></th> + <td>なし</td> + </tr> + <tr> + <th scope="row">許可されている内容</th> + <td> + <p>文書が {{HTMLElement("iframe")}} の {{htmlattrxref("srcdoc", "iframe")}} 文書である場合、または題名情報がより上位のプロトコル (HTML メールの件名の行など) で使用される場合は、0個以上のメタデータコンテンツ。</p> + + <p>他の場合は正確に1つの {{HTMLElement("title")}} 要素を含む、1個以上のメタデータコンテンツ。</p> + </td> + </tr> + <tr> + <th scope="row">タグの省略</th> + <td><code><head></code> 要素内で最初に存在するものが要素である場合、開始タグを省略可能。<br> + <code><head></code> 要素に続く最初のものが空白文字やコメントでない場合、終了タグが省略可能。</td> + </tr> + <tr> + <th scope="row">許可されている親要素</th> + <td>{{HTMLElement("html")}} 要素の最初の子要素として配置可能。</td> + </tr> + <tr> + <th scope="row">許可されている ARIA ロール</th> + <td>なし</td> + </tr> + <tr> + <th scope="row">DOM インターフェイス</th> + <td>{{domxref("HTMLHeadElement")}}</td> + </tr> + </tbody> +</table> + +<h2 id="Attributes" name="Attributes">属性</h2> + +<p>この要素には<a href="/ja/docs/HTML/Global_attributes">グローバル属性</a>があります。</p> + +<dl> + <dt>{{htmlattrdef("profile")}} {{obsolete_inline}}</dt> + <dd>1つ以上のメタデータプロファイルの {{glossary("URI")}} で、{{Glossary("whitespace", "ホワイトスペース")}}区切りです。</dd> +</dl> + +<h2 id="Example" name="Example">例</h2> + +<pre class="brush: html"><!doctype html> +<html> + <head> + <title>Document title</title> + </head> +</html> +</pre> + +<h2 id="Notes" name="Notes">メモ</h2> + +<p>HTML5 互換のブラウザーでは、タグが省略されていても <code><head></code> 要素を自動的に生成します。<a href="https://www.stevesouders.com/blog/2010/05/12/autohead-my-first-browserscope-user-test/">この自動生成は、過去のブラウザーでは保証されていません</a>。</p> + +<h2 id="Specifications" name="Specifications">仕様書</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">仕様書</th> + <th scope="col">状態</th> + <th scope="col">備考</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('HTML WHATWG', 'semantics.html#the-head-element', '<head>')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td>最新のスナップショットから変更なし</td> + </tr> + <tr> + <td>{{SpecName('HTML5 W3C', 'document-metadata.html#the-head-element', '<head>')}}</td> + <td>{{Spec2('HTML5 W3C')}}</td> + <td><code>profile</code> を廃止</td> + </tr> + <tr> + <td>{{SpecName('HTML4.01', 'struct/global.html#h-7.4.1', '<head>')}}</td> + <td>{{Spec2('HTML4.01')}}</td> + <td> </td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<p class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</p> + +<p>{{Compat("html.elements.head")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li><code><head></code> の中で使用することができる要素: + + <ul> + <li>{{HTMLElement("title")}}</li> + <li>{{HTMLElement("base")}}</li> + <li>{{HTMLElement("link")}}</li> + <li>{{HTMLElement("style")}}</li> + <li>{{HTMLElement("meta")}}</li> + <li>{{HTMLElement("script")}}</li> + <li>{{HTMLElement("noscript")}}</li> + <li>{{HTMLElement("template")}}</li> + </ul> + </li> +</ul> |