HTML tag ##Internet Explorer 9, Firefox, Opera, Chrome and Safari support the tag . Note: Internet Explorer 8 and earlier versions do not support the tag. (Recommended learning: html tutorial) Definition and usage tag defines graphics, such as charts and other images. tags are just graphics containers, you have to use a script to draw the graphics. Differences between HTML 4.01 and HTML 5The tag is a new tag in HTML 5. ExampleHow to display a red rectangle through the canvas element: your browser does not support the canvas tag var canvas=document.getElementById('myCanvas'); var ctx=canvas.getContext('2d'); ctx.fillStyle='#FF0000'; ctx.fillRect(0,0,80,100); Copy after login