Skip to content

Instantly share code, notes, and snippets.

@greyshine
Last active November 17, 2017 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save greyshine/aeb1bf2a92fb2328ec6008913c6f2ab9 to your computer and use it in GitHub Desktop.
Save greyshine/aeb1bf2a92fb2328ec6008913c6f2ab9 to your computer and use it in GitHub Desktop.
my html5 template
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title></title>
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/grids-responsive-min.css">
<!--<![endif]-->
<script type="text/javascript" src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<style type="text/css">
* { margin: 0px; padding: 0px; }
</style>
<script type="text/javascript">
$( document ).ready( function() {
$('body').append(' Welt');
} );
</script>
</head>
<body>
Hallo
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment