0
|
1 |
<?xml version="1.0"?>
|
|
2 |
<svg width="10cm" height="3cm" viewBox="0 0 1000 300"
|
|
3 |
xmlns="http://www.w3.org/2000/svg" version="1.2" baseProfile="tiny">
|
|
4 |
<desc>Example tspan01 - using tspan to change visual attributes</desc>
|
|
5 |
<g font-family="Verdana" font-size="45" >
|
|
6 |
<text x="200" y="150" fill="blue" >
|
|
7 |
You are
|
|
8 |
<tspan font-weight="bold" fill="red" >not</tspan>
|
|
9 |
a banana.
|
|
10 |
</text>
|
|
11 |
</g>
|
|
12 |
<!-- Show outline of canvas using 'rect' element -->
|
|
13 |
<rect x="1" y="1" width="998" height="298"
|
|
14 |
fill="none" stroke="blue" stroke-width="2" />
|
|
15 |
</svg>
|