<!doctype html>
<meta charset="UTF-8">
<canvas width="600" height="400">
</canvas>
<script>
var pantalla = document.querySelector("canvas");
pincel = pantalla.getContext("2d");
pincel.fillStyle = "lightgrey"; //propiedad
pincel.fillRect(0,0,600,400);// funcion
pincel.fillStyle = "green"; //propiedad
pincel.fillRect(0,0,200,400);// funcion
pincel.fillStyle = "red" ;//propiedad
pincel.fillRect(400,0,200,400);// funcion
pincel.fillStyle = "Gold" ;//propiedad
pincel.beginPath();// funcion
pincel.moveTo(300,200);
pincel.lineTo(200,400);
pincel.lineTo(400,400);
pincel.fill();
pincel.fillStyle = "Blue" ;//propiedad
pincel.beginPath();// funcion
pincel.arc(300,200,50,0,2*3.14159);
pincel.fill();
</script>