Insérer du texte entre un rectangle dessiné en SVG

J'ai un code en SVG:

<svg width="100%" height="100%" version="1.1"xmlns="http://www.w3.org/2000/svg">
    <rect x="20" y="20" width="250" height="250" style="fill:blue">
        <animate attributeType="CSS" attributeName="opacity" from="1" to="0" dur="5s" repeatCount="indefinite" />
    </rect>
</svg>

Maintenant, j'ai besoin d'ajouter un texte entre ce rectangle. Quelqu'un peut me dire comment faire?

source d'informationauteur Maverick | 2011-03-27