「!」を入力してtabキーを押す
ファイルを新規作成し、○○〇.html(○〇〇の名前は自由)とします。そのファイルを開き、「!」を入力してtabキーを押すと以下のテンプレートが自動入力されます。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
lang =”ja”に変更する
lang属性がen(英語)になっているのでja(日本語)に変更しましょう。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>