<body style="background:black; color:white; font-family:monospace">
<h1 align="justify">Bandeira da Bahia</h1>
<canvas width="600" height="400"></canvas>
<script>
var tela = document.querySelector('canvas');
var pincel = tela.getContext('2d');
pincel.fillStyle = 'lightgrey';
pincel.fillRect(0, 0, 600, 400);
pincel.fillStyle = 'white';
pincel.fillRect(0, 0, 600, 100);
pincel.fillStyle = 'red';
pincel.fillRect(0, 100, 600, 100);
pincel.fillStyle = 'white';
pincel.fillRect(0, 200, 600, 100);
pincel.fillStyle = 'red';
pincel.fillRect(0, 300, 600, 100);
pincel.fillStyle = 'blue';
pincel.fillRect(0, 0, 200, 200);
pincel.fillStyle = 'white';
pincel.beginPath();
pincel.moveTo(95, 10);
pincel.lineTo(15, 175);
pincel.lineTo(175, 175);
pincel.fill();
</script>
</body>