Skip to content

Instantly share code, notes, and snippets.

@eeropic
Created October 19, 2025 09:15
Show Gist options
  • Select an option

  • Save eeropic/37bb7c5cc1adc388d714ff07e34ab0bf to your computer and use it in GitHub Desktop.

Select an option

Save eeropic/37bb7c5cc1adc388d714ff07e34ab0bf to your computer and use it in GitHub Desktop.
VSCode HTML5 boilerplate snippet
{
"html5 boilerplate": {
"scope": "html",
"prefix": "boil",
"body": [
"<!DOCTYPE html>",
"<html lang=\"en\">",
" <head>",
" <meta charset=\"UTF-8\">",
" <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">",
" <title>Empty page</title>",
" <link rel=\"stylesheet\" href=\"style.css\">",
" </head>",
" <body>",
" <script src=\"main.js\"></script>",
" </body>",
"</html>",
],
"description": "Simple HTML5 boilerplate"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment