HTML Tutorial

The language for building web pages.

HTML SVG

HTML SVG

SVG stands for Scalable Vector Graphics. SVG is used to define vector-based graphics for the web. SVG graphics are defined in XML format. Every element and every attribute in SVG files can be animated.

SVG vs Canvas:

SVGCanvas
XML-basedJavaScript-based
Scalable without quality lossPixel-based, may blur
Good for logos/iconsGood for games/animations
DOM accessibleNot DOM accessible

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics