1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

metaタグ個人的まとめ

Posted at

##一覧(2020/06/02)
メタタグいっつも調べるの面倒なので、まとめました。

<!DOCTYPE html>
<html lang="ja">
    <head>
        <meta charset="UTF-8">
        <title>【ここにタイトル】</title>
        <meta name="keyword" content="【ページのキーワード】">
        <meta name="discription" content="【ページ概要】">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0">
        <meta property="og:title" content="ページタイトル" >
        <meta property="og:type" content="サイトタイプ" >
        <meta property="og:description" content="ページの概要" >
        <meta property="og:url" content="ページのURL" >
        <meta property="og:image" content="ページのアイキャッチ画像" >
        <meta property="og:site_name" content="サイト名" >
        <meta property="og:locale" content="国や地域(ja_JP)" >
        <meta property="fb:app_id" content="FacebookのアプリID" >
        <meta property="twitter:card" content="Twitterカードの種類(Summary Card/Summary with Large Image など)" >
        <meta property="twitter:site" content="Twitterユーザー名" >
     <meta http-equiv="default-style" content=”sample.css”>

        <meta name="format-detection" content="email=no,telephone=no,address=no">
        <meta name="author" content="【ページ名】">
        <meta name="copyright" content="©会社名">
        <meta name="generator" content="ツールやソフトウェア名">
        <meta name="application-name" content="ウェブアプリケーション名">

        <meta name="msapplication-TileImage" content="画像のURL">
        <meta name="msapplication-TileColor" content="背景色"/>

        <meta name="google" content="nositelinkssearchbox">
        <meta name="google" content="notranslate">

        <meta name="robots" content="noindex,nofollow">

     <meta http-equiv="refresh" content="10;URL=test.html">
        
    </head>
    <body>
    </body>
</html>

####文書の文字コード
<meta charset="UTF-8">

####ページのタイトルを入れる
<title>【ここにタイトル】</title>

####Webページの著作者名
<meta name="author" content="【ページ名】">

####コピーライト(フッターにあれば大丈夫)
<meta name="copyright" content="©会社名">

####Webページの概要
<meta name="discription" content="【ページ概要】">

####Webページのキーワード
<meta name="keyword" content="【ページのキーワード】">

####ビューポートの設定(スマホページの最適化)
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0">

####文書作成に使用したツールやソフトウェアを指定
<meta name="generator" content="ツールやソフトウェア名">

####ウェブアプリケーションの名前を指定
<meta name="application-name" content="ウェブアプリケーション名">

####自動リンクの無効化
<meta name="format-detection" content="email=no,telephone=no,address=no">

####Windows用ピン留機能に表示させる画像と背景色の設定
<meta name="msapplication-TileImage" content="画像のURL"> <meta name="msapplication-TileColor" content="背景色"/>

####検索画面の検索ボックスの非表示設定・基本的に表示はGoogleの判断
<meta name="google" content="nositelinkssearchbox">

####多言語への翻訳無効化
<meta name="google" content="notranslate">

####メタリフレッシュでリダイレクト SEO効果を移行先のサイトに引き継ぎできない
<meta http-equiv="refresh" content="10;URL=test.html">

####IE互換性のモードの設定
<meta http-equiv="X-UA-Compatible" content="IE=edge">

####デフォルトのcssファイルを設定
<meta http-equiv="default-style" content=”sample.css”>

####SNS用
<meta property="og:title" content="ページタイトル" > <meta property="og:type" content="サイトタイプ" > <meta property="og:description" content="ページの概要" > <meta property="og:url" content="ページのURL" > <meta property="og:image" content="ページのアイキャッチ画像" > <meta property="og:site_name" content="サイト名" > <meta property="og:locale" content="国や地域(ja_JP)" > <meta property="fb:app_id" content="FacebookのアプリID" > <meta property="twitter:card" content="Twitterカードの種類(Summary Card/Summary with Large Image など)" > <meta property="twitter:site" content="Twitterユーザー名" >

####ページをインデックスさせない時、またリンクジュースを渡さないように設定
<meta name="robots" content="noindex,nofollow">

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?