Mi code sobre el creeper
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<canvas width="600" height="400"> </canvas>
<script>
var pantalla = document.querySelector("canvas");
var pincel = pantalla.getContext("2d");
pincel.fillStyle = "brown"; //propiedad
pincel.fillRect(0,0,600,400); //función
//1
pincel.fillStyle = "green"; //propiedad
pincel.fillRect(125,50,350,300); //función
//2
pincel.fillStyle = "black"; //propiedad
pincel.fillRect(175,100,90,90); //función
//3
pincel.fillStyle = "black"; //propiedad
pincel.fillRect(335,100,90,90); //función
//4
pincel.fillStyle = "black"; //propiedad
pincel.fillRect(265,190,70,100); //función
//5
pincel.fillStyle = "black"; //propiedad
pincel.fillRect(225,240,40,110); //función
//6
pincel.fillStyle = "black"; //propiedad
pincel.fillRect(335,240,40,110); //función
</script>
</body>
</html>