Skip to content

Instantly share code, notes, and snippets.

@shawnsandy
Created May 10, 2020 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shawnsandy/6f7f2edb535e8aba0e6a27dc7fb2e392 to your computer and use it in GitHub Desktop.
Save shawnsandy/6f7f2edb535e8aba0e6a27dc7fb2e392 to your computer and use it in GitHub Desktop.
Heml 5 templates
{
"generate html5 (basic) template": {
"prefix": "html5",
"body": [
"<!doctype html>",
"",
"<html lang=\"en\">",
"<head>",
" <meta charset=\"utf-8\">",
"",
" <title>${1:title}</title>",
" <meta name=\"description\" content=\"${1:title}\">",
" <meta name=\"author\" content=\"${2:author}\">",
"",
" <link rel=\"stylesheet\" href=\"css/styles.css?v=1.0\">",
"",
"</head>",
"",
"<body>",
" <script src=\"index.js\"></script>",
"</body>",
"</html>"
],
"description": "generate html5 (basic) template"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment