Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<body>
<canvas id ="canvas" width="200" height="400"></canvas>
<script>
var canvas = document.getElementById('canvas');
var context = canvas.getContext("2d");
context.fillStyle = 'rgb(100, 0, 100)';
context.fillRect(0, 0, 200, 200);
context.fillStyle = 'rgb(100, 100, 0)';
context.fillRect(0, 200, 200, 200);
</script>
</body>
</html>