1
resposta

Meu Creeper

Não ficou totalmente fiel, mas tentei colocar o que eu aprendi

<canvas width="600" height="400"></canvas>

<script>
    var tela = document.querySelector("canvas");
    var pincel = tela.getContext("2d");

    pincel.fillStyle = "lightgrey";
    pincel.fillRect(0, 0, 600, 400);

    pincel.fillStyle = "darkgreen";
    pincel.fillRect(125, 50, 350, 300);

    pincel.fillStyle = "black";
    pincel.fillRect(150, 90, 90, 90);

    pincel.fillStyle = "black";
    pincel.fillRect(360, 90, 90, 90);

    pincel.fillStyle = "black";
    pincel.fillRect(265, 200, 70, 100);

    pincel.fillStyle = "black";
    pincel.fillRect(225, 240, 40, 110);

    pincel.fillStyle = "black";
    pincel.fillRect(335, 240, 40, 110);

</script>
1 resposta

Olá, Gabriel! Como vai?

Mandou bem, sua solução ficou muito boa, parabéns!

Qualquer dúvida estamos à disposição.

Continue praticando e bons estudos!

Até mais!