1
resposta

creeper

<canvas width = '350' height = '300' ></canvas>
<script>
    var tela = document.querySelector('CANVAS');
    var pincel = tela.getContext('2d');

    pincel.fillStyle = 'darkgreen';
    pincel.fillRect(0, 0, 350, 300);

    pincel.fillStyle = 'black';
    pincel.fillRect(50, 60, 90, 90);

    pincel.fillStyle = 'black';
    pincel.fillRect(210, 60, 90, 90);

    pincel.fillStyle = 'black';
    pincel.fillRect(140, 150, 70, 100);

    pincel.fillStyle = 'black';
    pincel.fillRect(100, 210, 40, 110);

    pincel.fillStyle = 'black';
    pincel.fillRect(210, 210, 40, 110);



</script>
1 resposta

Muito bem fez certo o Creeper Animal Explosivo do Minecraft.