<html>
<body>
<h1>HTML5 Canvas</h1>
<canvas id="myCanvas" width="400" height="400" style="border:1px solid">
</canvas>
<script>
const c = document.getElementById("myCanvas");
const ctx = c.getContext("2d");
ctx.fillStyle = "#0192B9";
ctx.fillRect(50, 50, 300, 300);
</script>
</body>
</html>