Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<canvas id="canvas" width="100" height="100"></canvas>
<script>
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext('2d');
ctx.fillStyle = 'green';
ctx.fillRect(50, 50, 50, 50);
</script>
</html>