Last active
November 5, 2020 18:22
-
-
Save ifkas/5344591 to your computer and use it in GitHub Desktop.
HTML5 snippet - Starter template for Sublime Text 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[ | |
<!DOCTYPE html> | |
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> | |
<!--[if IE 7]><html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]--> | |
<!--[if IE 8]><html class="no-js lt-ie9" lang="en"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> | |
<head> | |
<!-- Global Metas --> | |
<meta charset="utf-8"> | |
<meta name="description" content=""> | |
<meta name="author" content=""> | |
<meta name="keywords" content=""> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title>${1:title}</title> | |
<!-- Mobile Specific Metas --> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> | |
<!--[if lt IE 9]> HTML5Shiv | |
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
<![endif]--> | |
<!-- CSS's --> | |
<link rel="stylesheet" href=""> | |
<!-- Favicons --> | |
<link rel="shortcut icon" href="images/favicon.ico"> | |
<link rel="apple-touch-icon" href="images/apple-touch-icon.png"> | |
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png"> | |
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> | |
</head> | |
<body> | |
${2:body} | |
</body> | |
</html> | |
]]></content> | |
<tabTrigger>html5</tabTrigger> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment