blob: 1acef69f9413c154b2f527d3792f24bbbdb38643 [file] [log] [blame] [edit]
<!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 = '#9876c8';
context.fillRect(0, 0, 50, 50);
</script>
</body>
</html>