SVG:Namespace: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
Line 12: Line 12:
     xmlns:xlink="http://www.w3.org/1999/xlink">
     xmlns:xlink="http://www.w3.org/1999/xlink">
   <title>title of drawing</title>
   <title>title of drawing</title>
  <!-- your drawing here -->
  </svg>
  </svg>

Revision as of 10:47, 28 April 2005

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/> ...

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>