<svg xmlns="http://www.w3.org/2000/svg"
width="12cm" height="10cm">
<ellipse rx="110" ry="130" />
<rect x="4cm" y="1cm" width="3cm" height="6cm" />
</svg>
Here, although no elements have any prefixes, the
svg, ellipse, and
rect elements are in the
http://www.w3.org/2000/svg namespace.
The attributes are a different story. Default namespaces only apply
to elements, not to attributes. Thus in the previous example the
width, height,
rx, ry, x,
and y attributes are not in any namespace.