Skip to content

Instantly share code, notes, and snippets.

@zz85
Created April 22, 2015 17:12
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 zz85/6166732ccc87fc3bbb27 to your computer and use it in GitHub Desktop.
Save zz85/6166732ccc87fc3bbb27 to your computer and use it in GitHub Desktop.
boilerplate
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>A Boid Ballet</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="main.css" />
</head>
<body>
<script>
loadScript('main.js');
function loadScript(script) {
var js = document.createElement("script");
js.type = 'text/javascript';
js.src = script;
document.body.appendChild(js);
}
</script>
</body>
</html>
console.log('hello world');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment