mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-26 21:28:04 +00:00
22 lines
584 B
JSON
22 lines
584 B
JSON
{
|
|
"HTML template": {
|
|
"prefix": "html",
|
|
"body": [
|
|
"<!DOCTYPE html>",
|
|
"<html>",
|
|
"<head>",
|
|
"\t<meta charset=\"utf-8\" />",
|
|
"\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">",
|
|
"\t<title>{{Page Title}}</title>",
|
|
"\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">",
|
|
"\t<link rel=\"stylesheet\" type=\"text/css\" media=\"screen\" href=\"{{main.css}}\" />",
|
|
"\t<script src=\"{{main.js}}\"></script>",
|
|
"</head>",
|
|
"<body>",
|
|
"\t{{}}",
|
|
"</body>",
|
|
"</html>"
|
|
],
|
|
"description": "Simple HTML5 starting point"
|
|
}
|
|
} |