最低限必要なHTML5のテンプレート

HTML5のウェブページを作成する上で最低限必要なテンプレートファイルのご紹介です
html5

<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="utf-8">
  <!--[if lt IE 9]>
    <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.2/html5shiv.min.js" type="text/javascript"></script>
  <![endif]-->
  <title>ページタイトル</title>
  <meta name="keywords" content="キーワード1,キーワード2">
  <meta name="description" content="ページの説明">
</head>
<body>
  <p>HTML5で作成しました!</p>
</body>
</html>

テンプレートファイルのダウンロード

上の内容をファイル化したものはこちら

download-logo