1
resposta

Harry Potter e as Reliquias da morte ahaha

  <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 = 'green';
pincel.fillRect(0, 0, 200, 400);

pincel.fillStyle = 'red';
pincel.fillRect(400, 0, 200, 400);

pincel.fillStyle = 'orange';
pincel.beginPath();
pincel.moveTo(300, 200);
pincel.lineTo(200, 400);
pincel.lineTo(400, 400);
pincel.fill();

pincel.fillStyle = 'grey';
pincel.beginPath();
pincel.arc(300, 350, 65, 0, 2 * 3.14);
pincel.fill();

pincel.fillStyle = 'blue'
pincel.fillRect(299, 200, 2, 200);


 </script>
1 resposta

Fala, Marcelo! Tudo bem por aí?

Muito bom! Mandou muito bem na sua solução!

Continue praticando.

Bons estudos e até mais!

Harry Potter dando tchau