Category: Graphics
-
Canvas
HTML element <canvas> gives you an easy and powerful way to draw graphics using JavaScript. It can be used to draw graphs, make photo compositions or do simple (and not so simple) animations. Here is a simple <canvas> element which has only two specific attributes width and height plus all the core HTML attributes like…
-
SVG
HTML SVG Graphics HTML SVG (Scalable Vector Graphics) is used to define vector graphics in XML that can be embedded into HTML pages. SVG is different from normal images because it retains its quality even when zoomed in. XML is an abbreviation that stands for Extensible Markup Language, and it is a data description language. It…