Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 418 Bytes

vscode-html-boilerplate.md

File metadata and controls

16 lines (14 loc) · 418 Bytes

How to put an HTML boilerplate in VSCode

If you type ! in VSCode and then press tab, the IDE will put the basic HTML boilerplate:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
  </head>
  <body></body>
</html>