<meta charset="UTF-8"> <meta name=" />

ヘッダー内でよく使うタグ

  • このエントリーをはてなブックマークに追加

以下のタグは全て「<head>〜</head>」内へ追加するタグです。

基本的なタグ

<html lang="ja">
<meta charset="UTF-8">
<meta name="author" content="管理者名">
<meta name="description" content="ここにWEBサイトの説明を入れる。約150文字。" />
<meta name="keywords" content="キーワード1,キーワード2,キーワード3">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="alternate" type="application/rss+xml" title="sitemap" href="sitemap.xml">

スタイルシート(CSS)を指定するタグ

<link rel="stylesheet" href="/sample.css">

WEBサイトをインデックスさせたくない時に使うタグ

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

WEBサイトの正規化に必要なタグ

<link rel="canonical" href="(サイトのURL)">

レスポンシブサイトに必要なタグ

<meta name="viewport" content="width=device-width,initial-scale=1">

OGPに必要なタグ

<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# website: http://ogp.me/ns/website#">
<meta property="og:title" content="WEBサイトのタイトル" />
<meta property="og:type" content="WEBサイトのタイプ(website または blog)" />
<meta property="og:url" content="WEBサイトのURL" />
<meta property="og:image" content="WEBサイトのロゴまたは特徴づけるもの。(/sample.png)" />
<meta property="og:site_name" content="WEBサイトの名前" />
<meta property="og:description" content="WEBサイトの説明" />

サイトの引越し時に使うタグ

<meta http-equiv="refresh" content="5;URL=転送したいURL">

SNSでもご購読できます。

コメントを残す