Article introduction of Wulin.com (www.vevb.com): SVG is the abbreviation of Scalable Vector Graphics.
What SVG? Advantages of SVGThe advantages of using SVG over other types (JPEG or GIF) are that:
Browser supportIE9, Firefox, Chrome, and Safari 5 all support in-line SVG.
Insert SVG directly to HTML pageIn HTML5, you can insert SVG elements directly into the page:
<!DOCTYPE html>
<html>
<body>
<svg xmlns= version=1.1 height=190>
<polygon points=100,10 40,180 190,60 10,60 160,180
style=fill:lime;stroke:purple;stroke-width:5;fill-rule:evenodd; />
</svg>
</body>
</html>