mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
Hello Code
This commit is contained in:
22
extensions/html/snippet/html.json
Normal file
22
extensions/html/snippet/html.json
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"HTML template": {
|
||||
"prefix": "html",
|
||||
"body": [
|
||||
"<!DOCTYPE html>",
|
||||
"<html>",
|
||||
"<head>",
|
||||
" <meta charset=\"utf-8\" />",
|
||||
" <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">",
|
||||
" <title>{{Page Title}}</title>",
|
||||
" <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">",
|
||||
" <link rel=\"stylesheet\" type=\"text/css\" media=\"screen\" href=\"{{main.css}}\" />",
|
||||
" <script src=\"{{main.js}}\"></script>",
|
||||
"</head>",
|
||||
"<body>",
|
||||
" {{}}",
|
||||
"</body>",
|
||||
"</html>"
|
||||
],
|
||||
"description": "Simple HTML5 starting point"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user