Texto SVG - <text>
La <text> elemento se utiliza para definir un texto.
Ejemplo 1
Escribir un texto:
Aquí está el código SVG:
Ejemplo
<svg height="30" width="200">
<text x="0" y="15" fill="red">I
love SVG!</text>
</svg>
Inténtalo tú mismo " Ejemplo 2
Girar el texto:
Aquí está el código SVG:
Ejemplo
<svg height="60" width="200">
<text x="0" y="15" fill="red"
transform="rotate(30 20,40)">I
love SVG</text>
</svg>
Inténtalo tú mismo " Ejemplo 3
La <text> elemento puede estar dispuesto en cualquier número de sub-grupos con el <tspan> elemento. Cada <tspan> elemento puede contener un formato diferente y posición.
Texto en varias líneas (with the <tspan> element) :
Aquí está el código SVG:
Ejemplo
<svg height="90" width="200">
<text x="10" y="20" style="fill:red;">Several lines:
<tspan x="10" y="45">First line.</tspan>
<tspan x="10" y="70">Second line.</tspan>
</text>
</svg>
Inténtalo tú mismo " Ejemplo 4
Texto como un vínculo (with the <a> element) :
Aquí está el código SVG:
Ejemplo
<svg height="30" width="200"
xmlns:xlink="http://www.w3.org/1999/xlink">
<a xlink:href="http://www.w3ii.com/svg/default.html"
target="_blank">
<text x="0" y="15" fill="red">I love SVG!</text>
</a>
</svg>
Inténtalo tú mismo "