zig.com Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>HTML5 Canvas</h1>
<h2>The fillRect() Method</h2>
<canvas id="myCanvas" width="300" height="150" style="border:1px solid grey"></canvas>
<script>
  const c = document.getElementById("myCanvas");
  const ctx = c.getContext("2d");
  ctx.fillRect(20, 20, 150, 100);
</script> 
</body>
<!-- /jsref/tryit.asp?filename=tryhtml5_canvas_draw Thu, 06 Feb 2025 18:39:03 GMT -->
</html>