SVG
<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]-->
SVG <text>
❮ Previous
Next ❯
SVG Text - <text>
The <text> element is used to define a text.
Example 1
Write a text:
I love SVG!
Sorry, your browser does not support inline SVG.
Here is the SVG code:
Example
<svg height="30" width="200">
<text x="0" y="15" fill="red">I
love SVG!</text>
</svg>
Try it Yourself »
Example 2
Rotate the text:
I love SVG
Sorry, your browser does not support inline SVG.
Here is the SVG code:
Example
<svg height="60" width="200">
<text x="0" y="15" fill="red"
transform="rotate(30 20,40)">I
love SVG</text>
</svg>
Try it Yourself »
<!--
mid_content, all: [300,250][336,280][728,90][970,250][970,90][320,50][468,60]-->
Example 3
The <text> element can be arranged in any number of sub-groups with the <tspan>
element. Each <tspan> element can contain different formatting and position.
Text on several lines (with the <tspan> element):
Several lines:
First line.Second line.
Sorry, your browser does not support inline SVG.
Here is the SVG code:
Example
<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>
Try it Yourself »
Example 4
Text as a link (with the <a> element):
I love SVG!
Sorry, your browser does not support inline SVG.
Here is the SVG code:
Example
<svg height="30" width="200"
xmlns:xlink="http://www.w3.org/1999/xlink">
<a xlink:href="https://www.w3schools.com/graphics/"
target="_blank">
<text x="0" y="15" fill="red">I love SVG!</text>
</a>
</svg>
Try it Yourself »
❮ Previous
Next ❯