<!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>Creeper Canvas</title>
</head>
<body>
<h1>----------------Creeper Minecraft----------------</h1>
<canvas width="600" height="400">
</canvas>
<script>
var pantalla = document.querySelector("canvas");
var pincel = pantalla.getContext("2d");
pincel.fillStyle = "lightgrey"; // propiedad
//dibujo area de un rectangulo dando las coordenadas
pincel.fillRect(0,0,600,400); // función
//rostro
pincel.fillStyle = "chartreuse";
pincel.fillRect(125,50,350,300); // función
// ojos
pincel.fillStyle = "black";
pincel.fillRect(175,110,90,90); // función
pincel.fillRect(332,110,90,90); // función
//boca
pincel.fillRect(225,240,40,110); // función
pincel.fillRect(335,240,40,110); // función
//nariz
pincel.fillRect(265,200,70,100); // función
</script>
</body>
</html>