Canvas tag for html CLICK READ MORE


 <canvas id="myCanvas">Your browser does not support the canvas tag.</canvas>


<script>

var c = document.getElementById("myCanvas");

var ctx = c.getContext("2d");

ctx.fillStyle = "#FF0000";

ctx.fillRect(0, 0, 80, 100);

</script>





To test it copy the code and click below button and paste there

Definition and Usage

The <canvas> tag is used to draw graphics, on the fly, via scripting (usually JavaScript).

The <canvas> tag is transparent, it is only a container for graphics and you must use a script to actually draw the graphics.

Any text inside the <canvas> element will be displayed in browsers with JavaScript disabled and in browsers that do not support <canvas>.



Post a Comment

0 Comments