<!DOCTYPE html>
<html lang="pt-br">
<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>Desenho do Creeper</title>
</head>
<body>
O Creeper é um monstro do Minecreft e tem essa aparência:
<br><br>
<canvas width="600" height="400"></canvas>
<script>
var tela = document.querySelector("canvas");
var pincel = tela.getContext("2d");
pincel.fillStyle = "darkgreen";
pincel.fillRect(150, 0, 350, 300);
pincel.fillStyle = "black";
pincel.beginPath();
pincel.fillRect(200, 45, 90, 90);
pincel.fillRect(360, 45, 90, 90);
pincel.beginPath();
pincel.fillRect(290, 135, 70, 100);
pincel.fillRect(250,175, 40, 110);
pincel.fillRect(360, 175, 42, 110);
</script>