blob: fa364bde34988eaf021c762ffb9b5776f20df402 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<canvas id ="canvas" width="100" height="100"></canvas>
<script>
var canvas = document.getElementById('canvas');
var context = canvas.getContext("2d");
context.fillStyle = 'blue';
context.fillRect(0, 0, 100, 100);
context.fillStyle = '#987664';
context.fillRect(0, 0, 50, 50);
</script>
</body>
</html>