Created
October 19, 2025 09:15
-
-
Save eeropic/37bb7c5cc1adc388d714ff07e34ab0bf to your computer and use it in GitHub Desktop.
VSCode HTML5 boilerplate snippet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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