Skip to content

Instantly share code, notes, and snippets.

@rafszul
Created May 3, 2015 05:22
Show Gist options
  • Save rafszul/fdf69089e9bfcb846d06 to your computer and use it in GitHub Desktop.
Save rafszul/fdf69089e9bfcb846d06 to your computer and use it in GitHub Desktop.
Fabric.js template html file
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://rawgit.com/kangax/fabric.js/master/dist/fabric.js"></script>
</head>
<body>
<canvas id="c" width="300" height="300" style="border:1px solid #ccc"></canvas>
<script>
(function() {
var canvas = new fabric.Canvas('c');
})();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment