SVG Text - <text>
O <text> elemento é usado para definir um texto.
exemplo 1
Escrever um texto:
Aqui está o código SVG:
Exemplo
<svg height="30" width="200">
<text x="0" y="15" fill="red">I
love SVG!</text>
</svg>
Tente você mesmo " exemplo 2
Rodar o texto:
Aqui está o código SVG:
Exemplo
<svg height="60" width="200">
<text x="0" y="15" fill="red"
transform="rotate(30 20,40)">I
love SVG</text>
</svg>
Tente você mesmo " exemplo 3
O <text> elemento pode ser organizados em qualquer número de sub-grupos com a <tspan> elemento. Cada <tspan> elemento pode conter formatação e posição diferente.
Texto em várias linhas (with the <tspan> element) :
Aqui está o código SVG:
Exemplo
<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>
Tente você mesmo " exemplo 4
Texto como um link (with the <a> element) :
Aqui está o código SVG:
Exemplo
<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>
Tente você mesmo "