Created
January 27, 2024 16:27
-
-
Save Santeenee/d0d63cd20a39735eb00ed868fe47c0fb to your computer and use it in GitHub Desktop.
VSCode snippet for a basic HTML structure
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
Show hidden characters
{ | |
"Basic HTML": { | |
"scope": "html,jsx,tsx,ejs,typescript,javascript,javascriptreact,typescriptreact", | |
"prefix": "!!", | |
"body": [ | |
"<html lang=\"en\">", | |
"<head>", | |
" <meta name=\"color-scheme\" content=\"light dark\"/>", | |
" <meta charset=\"UTF-8\" />", | |
" <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />", | |
" ", | |
" ${1:<!-- <link rel=\"stylesheet\" href=\"style.css\" /> <script defer src=\"app.js\"></script> -->}", | |
" ", | |
" <title>${2:My page}</title>", | |
"</head>", | |
"<body>", | |
" ${3:<h1>Sample title</h1>}", | |
" $0", | |
"</body>", | |
"</html>", | |
], | |
"description": "Basic HTML page structure" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment