html5のテンプレ

HTML書いてサイト作る時のテンプレです。

多分これであってるはず…

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>タイトル</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="説明">
<link rel="stylesheet" href="">
</head>
<body>


<!-- javascriptおくならここ -->
</body>
</html>