The <canvas> tag is used to create graphics. The <canvas> tag has various method for drawing paths, boxes, circles, text, and adding images.
Example of Code:
<html>
<head>
<style>
#mycanvas{border:1px solid red;}
</style>
</head>
<body>
<canvas id = "mycanvas" width = "100" height = "100" ></canvas>
</body>
</html>
Output
