Como soy Dominicano, dibujé mi bandera...
<body style="background: lightgray;">
    <canvas width="600" height="400"></canvas>
    <h3 style="margin-top: -215px;margin-left: 180px;">Hecho por Carlos Marmolejos.</h3>
    <script>
        var pantalla = document.querySelector("canvas");
        var pincel = pantalla.getContext("2d");
        pincel.fillStyle = "white";
        pincel.fillRect(0,0,600,400);
        pincel.fillStyle = "blue";
        pincel.fillRect(0,0,275,175);
        pincel.fillStyle = "red";
        pincel.fillRect(325,0,275,175);
        pincel.fillStyle = "red";
        pincel.fillRect(0,225,275,175);
        pincel.fillStyle = "blue";
        pincel.fillRect(325,225,275,175);
</script>
</body>Este es el resultado:
Luego bajaré el texto y le pondré el escudo.