![見出し画像](https://assets.st-note.com/production/uploads/images/37335439/rectangle_large_type_2_10e5cd8ccd492ee825d08c21a70a0b64.jpeg?width=1200)
Photo by
mericanadesico
headの中に入る要素
文字コード
<meta charaset="UTF-8">
ページ概要の指定方法
<meta name="description" content="ページの概要を表すテキスト情報">
<!--Googleの検索結果に利用される。約300文字前後-->
IE最適化の書き方
<meta http-equiv="X-UA-Compatible" content="IE=edge">
マルチデバイス対応の記載方法
<meta name="viewport" content="width=device-width, initial-scale=1">
SNSと連携させる記述
<meta propaty="og:url" content="ページのURL">
<meta propaty="og:title" content="ページのタイトル">
<meta propaty="og:description" content="ページの要約文">
<meta propaty="og:image" content="サムネイル画像のURL">
title要素
<title>ページタイトル</title>
linl要素で外部ファイルを読み込む
<link rel="stylesheet" href="ファイルの場所・ファイル名">
script要素でスクリプトを書き込み・参照
<script src="ファイルの場所・ファイル名"></script>