aboutsummaryrefslogtreecommitdiff
path: root/html
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-02-05 14:25:40 +0100
committerlonkaars <loek@pipeframe.xyz>2022-02-05 14:25:40 +0100
commit63c6a5da7d63b701f301b1a3b2f575e48ec350da (patch)
tree0e4ab06bcfd47491a253c3d876d0967d3b522561 /html
initial commit
Diffstat (limited to 'html')
-rw-r--r--html16
1 files changed, 16 insertions, 0 deletions
diff --git a/html b/html
new file mode 100644
index 0000000..1730a7a
--- /dev/null
+++ b/html
@@ -0,0 +1,16 @@
+snippet newhtml "HTML Starting Point"
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset='utf-8'>
+ <meta http-equiv='X-UA-Compatible' content='IE=edge'>
+ <title>${1:Page Title}</title>
+ <meta name='viewport' content='width=device-width, initial-scale=1'>
+ <link rel='stylesheet' type='text/css' media='screen' href='${2:style.css}'>
+ <script src='${3:script.js}'></script>
+</head>
+<body>
+ ${0}
+</body>
+</html>
+endsnippet