Skip to content

Instantly share code, notes, and snippets.

@michaeljdennis
Last active November 11, 2021 22:46
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaeljdennis/4598873 to your computer and use it in GitHub Desktop.
Save michaeljdennis/4598873 to your computer and use it in GitHub Desktop.
Sublime Text HTML5 Snippet
<snippet>
<content><![CDATA[
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>${1:Title}</title>
<meta name="description" content="">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
${2}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
</body>
</html>]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>html5</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
<description>HTML5 Snippet</description>
</snippet>
@IdkSad10
Copy link

bro u save my day thank you :)

@michaeljdennis
Copy link
Author

@IdkSad10 glad it helped! 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment