<h1>Qual é a fração?</h1>
<canvas width="600" height="400"> </canvas>
<script>
var tela = document.querySelector ('canvas');
var pincel = tela.getContext ('2d');
function desenhaQuadrado (x){
var x = 0;
while (x < 150) {
pincel.fillStyle = 'green'
pincel.fillRect (x, 0, 50, 50);
pincel.fillStroke = 'black';
pincel.strokeRect (x, 0, 50, 50);
x = x + 50;
}
pincel.fillStroke = 'black';
pincel.strokeRect (150, 0, 50, 50);
}
desenhaQuadrado (0);
</script>