Fiz algumas alterações para poder trabalhar a mente e fixar mais o assunto que pra mim está bem difícil, desistir jamais..
Segue o código e resultado abaixo.
![]( )
<meta charset="utf-8">
<canvas width="700" height="400"></canvas>
<h1>Ordem e Progresso</h1>
<script>
var tela = document.querySelector("canvas");
var pincel = tela.getContext("2d");
pincel.fillStyle = "green";
pincel.fillRect(0, 0, 700, 400);
pincel.fillStyle = "yellow"
pincel.beginPath();
pincel.moveTo(350, 0);
pincel.lineTo(0, 200);
pincel.lineTo(350, 400);
pincel.lineTo(700, 200);
pincel.fill();
pincel.fillStyle = "blue";
pincel.beginPath();
pincel.arc(350, 200, 160, 0, 2 * 3.14);
pincel.fill();
</script>