Buenas, acá dejo mi creeper.
<canvas width= "600" height = "400"></canvas>
<script>
var pantalla = document.querySelector("canvas");
var pincel = pantalla.getContext("2d");
pincel.fillStyle = "lightgrey"; //background
pincel.fillRect(0, 0, 600, 400);
pincel.fillStyle = "green";
pincel.fillRect(100, 50, 350, 300); //head
pincel.fillStyle = "black";
pincel.fillRect(150, 100, 90, 90); //eyes
pincel.fillStyle = "black";
pincel.fillRect(310, 100, 90, 90); //eyes
pincel.fillStyle = "black";
pincel.fillRect(240, 190, 70, 100); //nose
pincel.fillStyle = "black";
pincel.fillRect(200, 240, 40, 110); //mouth
pincel.fillStyle = "black";
pincel.fillRect(310, 240, 40, 110); //mouth
</script>