Skip to content

Instantly share code, notes, and snippets.

@CarlRevell
Last active January 1, 2016 18:29
Show Gist options
  • Save CarlRevell/8184027 to your computer and use it in GitHub Desktop.
Save CarlRevell/8184027 to your computer and use it in GitHub Desktop.
A very basic HTML 5 boilerplate I've used.
<!doctype html>
<html lang="en-gb">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Document</title>
<link href="/css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<script src="/js/jquery.min.js" type="text/javascript"><script>
<script type="text/javascript">
$(document).ready(function(){
alert("ta-da!");
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment