<canvas> is an element in HTML5 that we can use to draw graphics using scripting (that is most probably JavaScript).
This element behaves like a container for graphics and the rest will be done by scripting. We can draw images, graphs and a bit of animations etcetera using a element.
<canvas id="canvas1" width="300" height="100">
</canvas>