blob: 54f88906243691031cd80ced7189e267d175b87d [file] [log] [blame]
<canvas id="canvas" width="100" height="100"></canvas>
<script>
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
ctx.fillStyle = 'green';
ctx.fillRect(25, 25, 25, 50);
ctx.fillRect(60, 25, 25, 50);
</script>