Skip to content

Commit b65bf80

Browse files
boilerplate add new
1 parent 67afcd7 commit b65bf80

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

snippets/categories/html-basic.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,26 @@
2525
"description": "Complete HTML5 boilerplate with responsive meta tags",
2626
"scope": "text.html"
2727
},
28+
"html_!": {
29+
"prefix": "ah!",
30+
"body": [
31+
"<!DOCTYPE html>",
32+
"<html lang=\"${1:en}\">",
33+
"<head>",
34+
"\t<meta charset=\"UTF-8\">",
35+
"\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">",
36+
"\t<meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">",
37+
"\t<title>${2:Document}</title>",
38+
"\t<link rel=\"stylesheet\" href=\"${3:styles.css}\">",
39+
"</head>",
40+
"<body>",
41+
"\t${0}",
42+
"</body>",
43+
"</html>"
44+
],
45+
"description": "Complete HTML5 boilerplate with responsive meta tags",
46+
"scope": "text.html"
47+
},
2848
"html_link": {
2949
"prefix": "ahlink",
3050
"body": "<a href=\"${1:#}\" class=\"${2:link}\">${3:Link text}</a>",

0 commit comments

Comments
 (0)