HTML: Vector Graphics

Vector graphics may be embedded directly via xml.

  • can by styled by css
  • can be transformed by javascript
  • text in svg can be read by crawlers (seo)

Vector Graphics Software

Inkscape

How to prepare inkscape svg graphics for the web

Embedding SVG

001  <!-- css & javascript support, no support for caching -->
002  <svg width="n" height="n"></svg>
003  
004  <!-- only support for inline css, supports caching -->
005  <img src="my-svg.svg" />