0
1

More than 3 years have passed since last update.

HTML metaについて

Posted at

metaとは

HTMLタグ。
WEBページの情報を伝える事ができる。

metaで指定できる内容

・charset
<meta charset=”utf-8″>
・title
<title>○○</title>
・description
<meta name=”description” content=”〇〇〇”>
・keyword
<meta name=”keywords” content=”○○,○○,○○”>
・viewport
<meta name=”viewport” content=”width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=0, viewport-fit=cover”>
・robots
<meta name=”robots” content=”noindex,nofollow”>
・OGP
<meta property=”og:url” content=” ページの URL” />
<meta property=”og:type” content=” ページの種類” />
<meta property=”og:title” content=” ページの タイトル” />
<meta property=”og:description” content=” ページのディスクリプション” />
<meta property=”og:site_name” content=”サイト名” />
<meta property=”og:image” content=” サムネイル画像のURL” />

0
1
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
0
1