-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml-template(html模板).code-snippets
33 lines (33 loc) · 1.44 KB
/
html-template(html模板).code-snippets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"Print to console": {
"scope": "javascript,typescript,php,java,css,html",
"prefix": "html",
"body": [
"<!DOCTYPE html>",
"<html lang=\"zh-CN\">",
"<head>",
"<meta charset=\"UTF-8\">",
"<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">",
"<meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\"><!-- 通知 IE 采用其所支持的最新的模式 -->",
"<meta name=\"keywords\" content=\"关键词(一般不超过3个,每个关键词不宜过长,而且词语间要用英文“,”隔开。尽量将重要的关键字靠前放)\" />",
"<meta name=\"description\" content=\"描述(一般不超过150个字符)\" />",
"<title>Document</title>",
"</head>",
"<style>",
"",
"</style>",
"<body>",
"",
"</body>",
"<script src=\"https://code.jquery.com/jquery-3.6.0.js\" integrity=\"sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=\" crossorigin=\"anonymous\"></script>",
"<script src=\"https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js\"></script>",
"<script src=\"https://cdn.jsdelivr.net/npm/[email protected]/dist/echarts.min.js\" integrity=\"sha256-dfDChrs84c0+qLgBfDS6lG77FAaNbt+G/IlUxC+bokU=\" crossorigin=\"anonymous\"></script>",
"<script type=\"module\">",
" $1",
"</script>",
"<!-- <script type=\"text/javascript\"></script> -->",
"</html>"
],
"description": "html模板"
}
}