SVG:Namespace

From MozillaWiki
Revision as of 10:42, 28 April 2005 by Holger (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

declare namespaces for svg and xlink

the namespace declaration for svg is required if you don't specify it, nothing will be rendered. the xlink namespace is required if you use <use/>, <image/>, <a/> ...

the svg namespace: http://www.w3.org/2000/svg the xlink namespace: http://www.w3.org/1999/xlink

a simple SVG file may look like this:

<?xml version="1.0" standalone="no"?>

<svg xmlns="http://www.w3.org/2000/svg" 
    xmlns:xlink="http://www.w3.org/1999/xlink">
 <title>title of drawing</title>
</svg>