<canvas id="myCanvas" width="500" height="300"></canvas>
const canvas = document.getElementById('myCanvas');
const ctx = canvas.getContext('2d');
// Устанавливаем цвет заливки
ctx.fillStyle = 'red';
// Рисуем прямоугольник
ctx.fillRect(50, 50, 100, 100);
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.