Skip to content

Instantly share code, notes, and snippets.

@dwaps
Created December 5, 2019 11:38
Show Gist options
  • Save dwaps/fb7c067bda2d1cd3726c0fe5895f25e3 to your computer and use it in GitHub Desktop.
Save dwaps/fb7c067bda2d1cd3726c0fe5895f25e3 to your computer and use it in GitHub Desktop.
SNIPPET: Exemple pour générer une structure HTML.
{
"doctype": {
"description": "Generate DOCTYPE",
"prefix": "!",
"body": [
"<!DOCTYPE html>",
"<html lang=\"fr\">",
"\t<head>",
"\t\t<meta charset=\"utf-8\">",
"\t\t<title>${1:TITLE}</title>\n",
"\t\t<link rel=\"stylesheet\" href=\"css/style.css\">",
"\t</head>\n",
"\t<body>\n",
"\t\t${0:CURSOR}\n",
"\t\t<script src=\"js/app.js\"></script>",
"\t</body>",
"</html>"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment