Skip to content

Instantly share code, notes, and snippets.

@Santeenee
Created January 27, 2024 16:27
Show Gist options
  • Save Santeenee/d0d63cd20a39735eb00ed868fe47c0fb to your computer and use it in GitHub Desktop.
Save Santeenee/d0d63cd20a39735eb00ed868fe47c0fb to your computer and use it in GitHub Desktop.
VSCode snippet for a basic HTML structure
{
"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