コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
有効な HTML を使用してページ メタデータを指定する
ページ メタデータに有効な HTML を使用すると、Google はメタデータを記載されたとおりに使用できます。Google は、HTML が無効な場合や HTML 標準に準拠していない場合でも HTML の解析を試みますが、マークアップに誤りがあると Google 検索でのメタデータの使用方法に関して問題が発生することがあります。ページに関するメタデータを指定するための主たる要素は、HTML ドキュメントの <head>
要素です。<head>
要素内で無効な要素を使用すると、無効な要素以降の要素はすべて無視されます。
<head>
要素内で有効な要素を使用する
HTML 標準に従い、<head>
要素は次の有効な要素のみを含み、それ以外の無効な要素は含まないようにする必要があります。
title
meta
link
script
style
base
noscript
template
<head>
要素内で無効な要素を使用しない
<head>
要素内の HTML 標準では、前述以外の要素は許可されません。<head>
要素内に表示され、無効な内容としてレンダリングする一般的な要素は次のとおりです。
これらの無効な要素を <head>
要素内で使用しないことを強くおすすめします。ただし、使用する必要がある場合は、Google が認識するように設定する要素の後に無効な要素を配置してください。Google は、これらの無効な要素のいずれかを検出すると、<head>
要素の末尾であるとみなし、<head>
要素内に存在するそれ以降の要素の読み取りを中止します。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-08-04 UTC。
[null,null,["最終更新日 2025-08-04 UTC。"],[[["\u003cp\u003eUtilize valid HTML for page metadata to ensure Google can properly interpret and use it in search results.\u003c/p\u003e\n"],["\u003cp\u003eInclude metadata within the \u003ccode\u003e<head>\u003c/code\u003e element of your HTML document, using only the valid elements specified by the HTML standard: \u003ccode\u003etitle\u003c/code\u003e, \u003ccode\u003emeta\u003c/code\u003e, \u003ccode\u003elink\u003c/code\u003e, \u003ccode\u003escript\u003c/code\u003e, \u003ccode\u003estyle\u003c/code\u003e, \u003ccode\u003ebase\u003c/code\u003e, \u003ccode\u003enoscript\u003c/code\u003e, and \u003ccode\u003etemplate\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eAvoid using invalid elements like \u003ccode\u003e<iframe>\u003c/code\u003e and \u003ccode\u003e<img>\u003c/code\u003e within the \u003ccode\u003e<head>\u003c/code\u003e element as this can disrupt Google's parsing and cause metadata to be ignored.\u003c/p\u003e\n"],["\u003cp\u003eIf you must use invalid elements, place them after the valid metadata elements to minimize potential issues.\u003c/p\u003e\n"]]],["Valid HTML is crucial for Google to utilize page metadata correctly. The `\u003chead\u003e` element is key for this; only specific elements (`title`, `meta`, `link`, `script`, `style`, `base`, `noscript`, `template`) are allowed within it. Invalid elements, like `iframe` or `img`, cause Google to ignore any subsequent elements within `\u003chead\u003e`. Avoid invalid elements; if used, place them after valid ones to ensure Google reads the desired metadata first.\n"],null,["# Valid Page Metadata for Google Search | Google Search Central\n\nUse valid HTML to specify page metadata\n=======================================\n\n\nUsing valid HTML for page metadata ensures that Google can use the metadata as documented.\nGoogle tries to understand HTML even when it is invalid or inconsistent with the\n[HTML standard](https://html.spec.whatwg.org/multipage/),\nbut errors in the markup can cause problems with how your metadata is used in Google Search.\nThe primary element for specifying metadata about a page is the `\u003chead\u003e`\nelement of an HTML document. If you use an invalid element in the `\u003chead\u003e` element, Google ignores any\nelements that appear after the invalid element.\n\nUse valid elements in the `\u003chead\u003e` element\n------------------------------------------\n\n\nThe `\u003chead\u003e` element must only contain the following valid elements (and no other invalid elements), as per\nthe HTML standard:\n\n- `title`\n- `meta`\n- `link`\n- `script`\n- `style`\n- `base`\n- `noscript`\n- `template`\n\nDon't use invalid elements in the `\u003chead\u003e` element\n--------------------------------------------------\n\n\nNo element other than the aforementioned is permitted by the HTML standard in the\n`\u003chead\u003e` element. Common elements that appear in the `\u003chead\u003e` element,\nrendering it invalid are:\n\n- `iframe`\n- `img`\n\n\nWe strongly recommend that you don't use these invalid elements in the\n`\u003chead\u003e` element, but if you must, place these invalid elements after the ones you\nwant Google to see. Once Google detects one of these invalid elements, it assumes the end of\nthe `\u003chead\u003e` element and stops reading any further elements in the\n`\u003chead\u003e` element."]]