Skip to content

Instantly share code, notes, and snippets.

@gerred
Created May 29, 2012 20:22
Show Gist options
  • Save gerred/2830479 to your computer and use it in GitHub Desktop.
Save gerred/2830479 to your computer and use it in GitHub Desktop.
<html>
<head>
<style>body { text-align: center; } canvas { border: 1px solid black; margin: auto;}</style>
</head>
<body>
<canvas id="canvas" width="500" height="500"></canvas>
<script>
var canvas = document.getElementById("canvas"),
context = canvas.getContext('2d');
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment