The canvas element was introduced in HTML5 for drawing graphics.
<canvas id="myCanvas">
Cannot display graphic. Canvas is not supported by your browser (IE<9)
</canvas>
The above will create a transparent HTML<canvas> element of 300×150 px in size.
You can us...