vscode/extensions/html/snippets/html.code-snippets

19 lines
280 B
Plaintext
Raw Permalink Normal View History

2024-11-15 06:29:18 +00:00
{
"html doc": {
"isFileTemplate": true,
"body": [
"<!DOCTYPE html>",
"<html>",
"<head>",
"\t<meta charset=\"UTF-8\" />",
"\t<title>${1:title}</title>",
"</head>",
"<body>",
"\t$0",
"</body>",
"</html>"
],
"description": "HTML Document"
}
}