Search notes:

SVG: root element

<svg> is the «root» container of an SVG document.
It defines a new coordinate system and a viewport. <svg> can be embedded into a HTML or another SVG document.
<?xml version="1.0" ?>
<svg
  xmlns   = "http://www.w3.org/2000/svg"
  version = "1.1"
  width   = "1024"
  height  =  "768"
>

  <!-- Elements go here -->

</svg>
Github repository about-svg, path: /elements/svg.svg

See also

SVG elements

Index