Skip to content

Instantly share code, notes, and snippets.

@wozozo
Created December 12, 2011 13:37
Show Gist options
  • Save wozozo/1467189 to your computer and use it in GitHub Desktop.
Save wozozo/1467189 to your computer and use it in GitHub Desktop.
default html template.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--[if lt IE 8 ]>
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<![endif]-->
<script type="text/javascript" src="//www.google.com/jsapi"></script>
<script type="text/javascript">google.load("jquery", "1");</script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/modernizr/2.0.6/modernizr.min.js"></script>
<title></title>
<style>
body {
font-family: 'Lucida Grande', Arial, sans-serif;
}
</style>
</head>
<body>
<!--[if lt IE 8 ]>
<script type="text/javascript">google.load("chrome-frame", "1");</script>
<script type="text/javascript">
window.attachEvent('onload', function () {
CFInstall.check({
mode: 'overlay'
});
});
</script>
<![endif]-->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment