<canvas height="400" width="600"></canvas>
<script>
function desenhaQuadrado(x, y, tamanho, cor) {
var tela = document.querySelector('canvas');
var pincel = tela.getContext('2d');
pincel.fillStyle = cor
pincel.fillRect(x, y, tamanho, tamanho);
strokeStyle = 'black'
pincel.strokeRect(x, y, tamanho, tamanho);
}
function desenhaTexto(texto, x , y) {
var tela = document.querySelector('canvas');
var pincel = tela.getContext('2d');
pincel.font='20px Georgia';
pincel.fillStyle='black';
pincel.fillText(texto, x, y);
}
desenhaTexto("Qual é a fração?", 0, 30);
for(var x = 0; x <200; x = x+50 ) {
if (x<150) {
desenhaQuadrado(x, 50, 50, 'green');
} else {
desenhaQuadrado(x, 50, 50, 'white');
}
}
</script>