<html>
<body>
<h3>A demonstration of how to access a CANVAS element</h3>
<canvas id="myCanvas" width="300" height="150" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas>
<p>Click the button to draw on the canvas.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.fillStyle = "#FF0000";
ctx.fillRect(20, 20, 150, 100);
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_canvas_get by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:04:41 GMT -->
</html>