Webサイト作るとき用のhtmlのテンプレ

後でいろいろ修正して行く予定。
{}内がページごとの修正部分。
ここで指定したページの文法チェックが出来る。

XHTML 1.0 Transitional

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  <meta http-equiv="Content-Style-Type" content="text/css"/>
  <meta http-equiv="Content-Script-Type" content="text/javascript"/>
  <title>{title}</title>
  <meta name="description" content="{description}"/>
  <meta name="keywords" content="{keyword1,keyword2,...}"/>
  <!--link rel="stylesheet" type="text/css" href="{url}" media="all"/-->
  <!--style type="text/css"></style-->
  <!--script type="text/javascript" src="{url}"></script-->
  <!--script type="text/javascript">//<!- -//- -></script-->
</head>
<body>
<div id="wrapper">
  <h1>{title}</h1>
</div>
</body>
</html>