WindowsでHTMLファイルを作る際のテンプレート

WindowsでHTMLファイルを作る際に最低限必要なテンプレートのご紹介です。

html5

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=shift_jis">
  <meta name="keywords" content="キーワード1,キーワード2">
  <meta name="description" content="ページの説明">
  <title>タイトル</title>
</head>
<body>
本文

</body>
</html>

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

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

download-logo