Created
December 3, 2015 18:58
HTML5 basic document template- A snippet for Visual Studio Code
This file contains 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": { | |
"prefix": "html", | |
"body": [ | |
"<!DOCTYPE html>\n", | |
"<html lang=\"en\">", | |
"<head>", | |
"\t<meta charset=\"utf-8\">\n", | |
"\t<title>${title}</title>", | |
"\t<meta name=\"description\" content=\"${description}\">\n", | |
"\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n", | |
"\t<link rel=\"stylesheet\" href=\"${styles.css}\">", | |
"</head>", | |
"<body>", | |
"\t${}\n", | |
"\t<script src=\"${script.js}\"></script>", | |
"</body>", | |
"</html>" | |
], | |
"description": "HTML5 basic document template" | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment