<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>BANDERA ARGENTINA</title>
</head>
<body>
    <H1>AQUI ESTAAA LAAA BANDERAAA IDOOOLATRAADAAA...</H1>
    <canvas width="600" height="300"></canvas>
    <h3>Le falta el sol</h3>
    <script>
        function cuadrado(x, y, color) {
            var pantalla = document.querySelector('canvas');
            var pincel = pantalla.getContext('2d');
            pincel.fillStyle = color;
            pincel.fillRect(x, y, 50, 50);
            pincel.strokeStyle = 'black';
            pincel.strokeRect(x, y, 50, 50);
        }
        for (var x = 0; x < 600; x = x + 50) {
            cuadrado(x, 0, 'skyblue');
            cuadrado(x, 50, 'skyblue');
            cuadrado(x, 100, 'white');
            cuadrado(x, 150, 'white');
            cuadrado(x, 200, 'skyblue');
            cuadrado(x, 250, 'skyblue');
        }
    </script>
</body>
</html>