SVG – Learning by Coding

[ tspan.svg --> Grafik anzeigen ]

 1: <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
 2: <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
 3:   "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" [
 4:   <!ATTLIST svg xmlns:xlink CDATA #FIXED "http://www.w3.org/1999/xlink">
 5: ]>
 6: 
 7: <!-- SVG Learning by Coding http://www.datenverdrahten.de/svglbc/ -->
 8: <!--    AuthorDrThomas Meinike 12/02 thomas@handmadecode.de     -->
 9: 
10: <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
11: 
12:   <title>SVG Learning by Coding</title>
13:   <desc>SVG-Spezifikation in Beispielen</desc>
14:   <text x="20" y="30" style="fill: #000; font-size: 24px">Element tspan</text>
15: 
16:   <text x="30" y="60" style="fill: #00C; font-size: 18px">
17:     <tspan x="30" dx="0" dy="25">Testtext</tspan>
18:     <tspan x="30" dx="0" dy="25">Testtext</tspan>
19:     <tspan x="30" dx="0" dy="25">Testtext</tspan>
20:     <tspan x="30" dx="0" dy="25">Testtext</tspan>
21:   </text>
22: 
23:   <text style="fill: #F00; font-size: 18px">
24:     <tspan x="30 60 90 120 150 180 210 240 270 300 330 360 390" y="210">
25:       Noch ein Text
26:     </tspan>
27:   </text>
28: 	
29: </svg>

[zum Anfang]