Nem acredito que fiz sozinha!!! Depois que fiz, olhei as dicas do Flávio!!! Sei que os números ficaram diferentes, mas fiquei super feliz com o resultado =)
<canvas width="600" height="400" back></canvas>
<script>
//Canvas API
var tela = document.querySelector('canvas');
var pincel = tela.getContext('2d');
pincel.fillStyle = 'darkgreen';
pincel.fillRect(40, 40, 350, 300);
pincel.fillStyle = 'black';
pincel.fillRect(90, 90, 90, 100);
pincel.fillStyle = 'black';
pincel.fillRect(250, 90, 90, 100);
pincel.fillStyle = 'black';
pincel.fillRect(180, 190, 70, 100);
pincel.fillStyle = 'black';
pincel.fillRect(140, 230, 40, 110);
pincel.fillStyle = 'black';
pincel.fillRect(250, 230, 40, 110);
</script>