Skip to content

Instantly share code, notes, and snippets.

@michaelcolenso
Created December 2, 2011 00:07
Show Gist options
  • Save michaelcolenso/1420873 to your computer and use it in GitHub Desktop.
Save michaelcolenso/1420873 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML>
<html>
<head>
<script>
window.onload = function(){
var canvas = document.getElementById("myCanvas");
var context = canvas.getContext("2d");
// do stuff here
};
</script>
</head>
<body>
<canvas id="myCanvas" width="578" height="200">
</canvas>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment