head内に記述する要素の総まとめ -meta要素、link要素、ソーシャルサービス用の要素、ブラウザやスマホアプリ用の要素など
Post on:2016年6月1日
HTMLドキュメントのhead内に記述するmeta要素やlink要素、ソーシャルサービス用の要素、ブラウザ用の要素、スマホアプリ用の要素などをまとめた「HEAD」を紹介します。
翻訳するにあたりいくつか尋ねたところ、著者様はとてもいい人でした。
公開当初から内容がアップデートされ、ライセンスもCC0に変更されています。
オススメの最小限の構成
下記は、head内に記述する最小限のタグです。
1 2 3 4 |
<meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>ページのタイトル</title> |
要素
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<!-- ドキュメントのタイトル --> <title>ページのタイトル</title> <!-- すべての相対的なURLのために使用するベースのURLがドキュメント内に含まれます --> <base href="https://example.com/page.html"> <!-- 外部CSS --> <link rel="stylesheet" href="styles.css"> <!-- ドキュメント内のCSS --> <style> /* ... */ </style> <!-- JavaScript --> <script src="script.js"></script> |
meta要素
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
<meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <meta name="application-name" content="Application Name"> <meta name="description" content="150 chars"> <meta name="subject" content="your website's subject"> <meta name="robots" content="index,follow,noodp"> <meta name="googlebot" content="index,follow"> <meta name="google" content="nositelinkssearchbox"> <meta name="google-site-verification" content="verification_token"> <meta name="abstract" content=""> <meta name="topic" content=""> <meta name="summary" content=""> <meta name="classification" content="business"> <meta name="url" content="https://example.com/"> <meta name="identifier-URL" content="https://example.com/"> <meta name="directory" content="submission"> <meta name="category" content=""> <meta name="coverage" content="Worldwide"> <meta name="distribution" content="Global"> <meta name="rating" content="General"> <meta name="referrer" content="never"> <meta http-equiv="Content-Security-Policy" content="default-src 'self'"> <!-- 連続した数字があると誤認識してしまうので、電話番号の自動リンク機能は停止させます。 --> <meta name="format-detection" content="telephone=no"> <!-- 位置情報のgeoタグ --> <meta name="ICBM" content="latitude, longitude" /> <meta name="geo.position" content="latitude;longitude" /> <meta name="geo.region" content="country[-state]" /><!-- 国コード (ISO 3166-1): 必須, 州コード (ISO 3166-2): オプション; 例. content="US" / content="US-NY" --> <meta name="geo.placename" content="city/town" /><!-- 例. content="New York City" --> |
meta要素 非推奨
下記は、非推奨のmeta要素です。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<!-- ドキュメントの言語を宣言するために使われますが、うまくサポートされていません。 <html lang="">を使用した方がよいです。 --> <meta name="language" content="en"> <!-- Googleは無視し、Bingではスパムとみなします。 --> <meta name="keywords" content="your,keywords,here,comma,separated,no,spaces"> <!-- 現在どの検索エンジンでも使用されていません。 --> <meta name="revised" content="Sunday, July 18th, 2010, 5:15 pm"> <!-- スパムボットがメールアドレスを収集するために使用しているだけです。 --> <meta name="reply-to" content="email@example.com"> <!-- <link rel="author">やhumans.txtを使用した方がよいです。 --> <meta name="author" content="name, email@example.com"> <meta name="designer" content=""> <meta name="owner" content=""> <!-- 検索ボットに指定した期間後にページを再訪するように伝えます。たいていの検索エンジンはランダムな間隔で再訪するので、サポートされません。 --> <meta name="revisit-after" content="7 days"> <!-- Googleはこの指定を使わないように強く助言しています。その代わりにサーバーサイド(例: Apache, nginx)のリダイレクトを使用した方がよいです。 --> <meta http-equiv="refresh" content="300;url=https://example.com/"> <!-- キャッシュのコントロール --> <!-- サーバーサイドのキャッシュのコントロールをもっと良くするために --> <meta http-equiv="Expires" content="0"> <meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Cache-Control" content="no-cache"> |
link要素
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
<link rel="copyright" href="copyright.html"> <link rel="stylesheet" href="https://example.com/styles.css"> <link rel="alternate" href="https://feeds.feedburner.com/martini" type="application/rss+xml" title="RSS"> <link rel="alternate" href="https://example.com/feed.atom" type="application/atom+xml" title="Atom 0.3"> <link rel="alternate" href="https://es.example.com/" hreflang="es"> <link rel="me" href="https://google.com/profiles/thenextweb" type="text/html"> <link rel="me" href="mailto:name@example.com"> <link rel="me" href="sms:+15035550125"> <link rel="archives" href="https://example.com/2003/05/" title="May 2003"> <link rel="index" href="https://example.com/" title="DeWitt Clinton"> <link rel="start" href="https://example.com/photos/pattern_recognition_1_about/" title="Pattern Recognition 1"> <link rel="prev" href="https://example.com/opensearch/opensearch-and-openid-a-sure-way-to-get-my-attention/" title="OpenSearch and OpenID? A sure way to get my attention."> <link rel="search" href="/open-search.xml" type="application/opensearchdescription+xml" title="Search Title"> <link rel="self" type="application/atom+xml" href="https://example.com/atomFeed.php?page=3"> <link rel="first" href="https://example.com/atomFeed.php"> <link rel="next" href="https://example.com/atomFeed.php?page=4"> <link rel="previous" href="https://example.com/atomFeed.php?page=2"> <link rel="last" href="https://example.com/atomFeed.php?page=147"> <link rel="shortlink" href="https://example.com/?p=43625"> <link rel="canonical" href="https://example.com/2010/06/9-things-to-do-before-entering-social-media.html"> <link rel="amphtml" href="https://www.example.com/url/to/amp-version.html"> <link rel="EditURI" href="https://example.com/xmlrpc.php?rsd" type="application/rsd+xml" title="RSD"> <link rel="pingback" href="https://example.com/xmlrpc.php"> <link rel="webmention" href="https://example.com/webmention"> <link rel="manifest" href="manifest.json"> <link rel="author" href="humans.txt"> <link rel="import" href="component.html"> <!-- 先読み、プリロード、プリブラウジング --> <link rel="dns-prefetch" href="//example.com/"> <link rel="preconnect" href="https://www.example.com/"> <link rel="prefetch" href="https://www.example.com/"> <link rel="prerender" href="https://example.com/"> <link rel="subresource" href="styles.css"> <link rel="preload" href="image.png"> <!-- さらに詳しい情報: https://css-tricks.com/prefetching-preloading-prebrowsing/ --> |
link要素 非推奨
下記は、非推奨のlink要素です。
1 |
<link rel="shortcut icon" href="path/to/favicon.ico"> |
ファビコン
1 2 3 4 5 6 7 8 9 |
<!-- IE10以下用 --> <!-- リンクではなく、「favicon.ico」をルートディレクトリに置いてください。 --> <!-- For IE 11, Chrome, Firefox, Safari, Opera --> <link rel="icon" href="path/to/favicon-16.png" sizes="16x16" type="image/png"> <link rel="icon" href="path/to/favicon-32.png" sizes="32x32" type="image/png"> <link rel="icon" href="path/to/favicon-48.png" sizes="48x48" type="image/png"> <link rel="icon" href="path/to/favicon-62.png" sizes="62x62" type="image/png"> <!-- さらに詳しい情報: https://bitsofco.de/all-about-favicons-and-touch-icons/ --> |
ソーシャル関連のhead内の要素
Facebook / Open Graph
1 2 3 4 5 6 7 8 9 10 11 |
<meta property="fb:app_id" content="123456789"> <meta property="og:url" content="https://example.com/page.html"> <meta property="og:type" content="website"> <meta property="og:title" content="Content Title"> <meta property="og:image" content="https://example.com/image.jpg"> <meta property="og:description" content="Description Here"> <meta property="og:site_name" content="Site Name"> <meta property="og:locale" content="en_US"> <meta property="article:author" content=""> <!-- Facebook: https://developers.facebook.com/docs/sharing/webmasters#markup --> <!-- Open Graph: http://ogp.me/ --> |
Facebook / Instant Articles
1 2 3 4 5 6 7 8 |
<meta charset="utf-8"> <meta property="op:markup_version" content="v1.0"> <!-- あなたの記事のWeb版のURL。 --> <link rel="canonical" href="http://example.com/article.html"> <!-- このスタイルがこの記事のために使われます。 --> <meta property="fb:article_style" content="myarticlestyle"> |
1 2 3 4 5 6 7 8 9 |
<meta name="twitter:card" content="summary"> <meta name="twitter:site" content="@site_account"> <meta name="twitter:creator" content="@individual_account"> <meta name="twitter:url" content="https://example.com/page.html"> <meta name="twitter:title" content="Content Title"> <meta name="twitter:description" content="Content description less than 200 characters"> <meta name="twitter:image" content="https://example.com/image.jpg"> <!-- さらに詳しい情報: https://dev.twitter.com/cards/getting-started --> <!-- Validate: https://dev.twitter.com/docs/cards/validation/validator --> |
Google+ / Schema.org
1 2 3 4 |
<link href="https://plus.google.com/+YourPage" rel="publisher"> <meta itemprop="name" content="Content Title"> <meta itemprop="description" content="Content description less than 200 characters"> <meta itemprop="image" content="https://example.com/image.jpg"> |
OEmbed
1 2 3 4 5 6 |
<link rel="alternate" type="application/json+oembed" href="http://example.com/services/oembed?url=http%3A%2F%2Fexample.com%2Ffoo%2F&format=json" title="oEmbed Profile: JSON"> <link rel="alternate" type="text/xml+oembed" href="http://example.com/services/oembed?url=http%3A%2F%2Fexample.com%2Ffoo%2F&format=xml" title="oEmbed Profile: XML"> |
ブラウザ・プラットフォーム関連のhead内の要素
Apple iOS
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<!-- iOSアプリのバナー --> <meta name="apple-itunes-app" content="app-id=APP_ID,affiliate-data=AFFILIATE_ID,app-argument=SOME_TEXT"> <!-- 連続した数字があると誤認識してしまうので、電話番号の自動リンク機能は停止させます。 --> <meta name="format-detection" content="telephone=no"> <!-- ホームスクリーンに追加 --> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="apple-mobile-web-app-title" content="App Title"> <!-- タッチアイコン --> <link rel="apple-touch-icon" href="apple-touch-icon.png"> <link rel="apple-touch-icon-precomposed" href="apple-touch-icon-precomposed.png"> <!-- ほとんどの場合、180x180pxのアイコン一つで充分です。 --> <!-- もしそれぞれのデバイスで異なるデザインにしたいのであれば、その分多くのアイコンを加えることができます。 --> <!-- スタートアップ イメージ --> <link rel="apple-touch-startup-image" href="startup.png"> <!-- さらに詳しい情報: https://developer.apple.com/safari/library/documentation/appleapplications/reference/safarihtmlref/articles/metatags.html --> |
Apple Safari
1 2 |
<!-- Safariのページイン用 --> <link rel="mask-icon" href="icon.svg" color="red"> |
Google Android
1 2 3 4 5 |
<meta name="theme-color" content="#E64545"> <!-- ホームスクリーンに追加 --> <meta name="mobile-web-app-capable" content="yes"> <!-- さらに詳しい情報: https://developer.chrome.com/multidevice/android/installtohomescreen --> |
Google Chrome
1 2 3 4 |
<link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/APP_ID"> <!-- Chromeの翻訳プロンプトを停止させる。 --> <meta name="google" value="notranslate"> |
Microsoft Internet Explorer
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<meta http-equiv="x-ua-compatible" content="ie=edge"> <meta http-equiv="cleartype" content="on"> <meta name="skype_toolbar" content="skype_toolbar_parser_compatible"> <!-- Windows PhoneのIE10で、リンクがハイライトするのを禁止させる。 (https://blogs.windows.com/buildingapps/2012/11/15/adapting-your-webkit-optimized-site-for-internet-explorer-10/) --> <meta name="msapplication-tap-highlight" content="no"> <!-- IEのピン留めサイト (https://msdn.microsoft.com/en-us/library/dn255024(v=vs.85).aspx) --> <meta name="application-name" content="Contoso Pinned Site Caption"> <meta name="msapplication-tooltip" content="Example Tooltip Text"> <meta name="msapplication-starturl" content="/"> <meta name="msapplication-config" content="http://example.com/browserconfig.xml"> <meta name="msapplication-allowDomainApiCalls" content="true"> <meta name="msapplication-allowDomainMetaTags" content="true"> <meta name="msapplication-badge" content="frequency=30; polling-uri=http://example.com/id45453245/polling.xml"> <meta name="msapplication-navbutton-color" content="#FF3300"> <meta name="msapplication-notification" content="frequency=60;polling-uri=http://example.com/livetile"> <meta name="msapplication-square150x150logo" content="images/logo.png"> <meta name="msapplication-square310x310logo" content="images/largelogo.png"> <meta name="msapplication-square70x70logo" content="images/tinylogo.png"> <meta name="msapplication-wide310x150logo" content="images/widelogo.png"> <meta name="msapplication-task" content="name=Check Order Status;action-uri=./orderStatus.aspx?src=IE9;icon-uri=./favicon.ico"> <meta name="msapplication-task-seperator" content="1"> <meta name="msapplication-TileColor" content="#FF3300"> <meta name="msapplication-TileImage" content="images/tileimage.jpg"> <meta name="msapplication-window" content="width=1024;height=768"> |
Microsoft Internet Explorer (レガシーブラウザは使用しないでください)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<!-- IE6で画像をマウスオーバーした際にイメージツールバーの表示を停止させる。 (https://msdn.microsoft.com/en-us/library/ms532986(v=vs.85).aspx) --> <meta http-equiv="imagetoolbar" content="no"> <!-- フォームの入力やボタンにWindowsのテーマを停止させる。 (https://support.microsoft.com/en-us/kb/322240) --> <meta name="MSThemeCompatible" content="no"> <!-- IE6ベータに現れる現象 (https://stackoverflow.com/q/2167301) --> <meta name="MSSmartTagsPreventParsing" content="true"> <!-- ページを切り替える時の効果 (https://msdn.microsoft.com/en-us/library/ms532847(v=vs.85).aspx) --> <meta http-equiv="Page-Enter" content="revealtrans(duration=2,transition=2)"> <meta http-equiv="Page-Exit" content="revealtrans(duration=3,transition=12)"> <meta http-equiv="Site-Enter" content="revealtrans(duration=2,transition=2)"> <meta http-equiv="Site-Exit" content="revealtrans(duration=3,transition=12)"> |
360 Browser
1 2 |
<!-- レンダリングエンジンの選択 --> <meta name="renderer" content="webkit|ie-comp|ie-stand"> |
UC Mobile Browser
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<!-- 指定された向きにスクリーンを固定します。 --> <meta name="screen-orientation" content="landscape/portrait"> <!-- このページをフルスクリーンで表示します。 --> <meta name="full-screen" content="yes"> <!-- テキストモードでも画像を表示します。 --> <meta name="imagemode" content="force"> <!-- アプリケーションモードでページを表示します。(fullscreen,forbiding gesture, etc.) --> <meta name="browsermode" content="application"> <!-- ナイトモーとを停止します。 --> <meta name="nightmode" content="disable"> <!-- ページをシンプルにし、データ転送を減らします。 --> <meta name="layoutmode" content="fitscreen"> <!-- フォントのサイズを拡大する機能を停止します。 --> <meta name="wap-font-scale" content="no"> |
QQ Mobile Browser
1 2 3 4 5 6 |
<!-- 指定された向きにスクリーンを固定します。 --> <meta name="x5-orientation" content="landscape/portrait"> <!-- このページをフルスクリーンで表示します。 --> <meta name="x5-fullscreen" content="true"> <!-- アプリケーションモードでページを表示します。(fullscreen,etc.) --> <meta name="x5-page-mode" content="app"> |
スマホアプリ関連のhead内の要素
1 2 3 4 5 6 7 8 9 10 11 |
<!-- iOS --> <meta property="al:ios:url" content="applinks://docs"> <meta property="al:ios:app_store_id" content="12345"> <meta property="al:ios:app_name" content="App Links"> <!-- Android --> <meta property="al:android:url" content="applinks://docs"> <meta property="al:android:app_name" content="App Links"> <meta property="al:android:package" content="org.applinks"> <!-- Web Fallback --> <meta property="al:web:url" content="http://applinks.org/documentation"> <!-- さらに詳しい情報: http://applinks.org/documentation/ --> |
メモ
パフォーマンス
href属性を要素の最初に記述することは、gzipでの圧縮を改善します。なぜならhref属性は, base, linkタグに使用されるからです。
1 |
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet"> |
他のリソース
ライセンス
sponsors