SVG – Learning by Coding

[ primitive_rose.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 03/04 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: 
15:   <text x="20" y="30" style="fill: #000; font-size: 24px">
16:     &lt;text&gt;Rose&lt;/text&gt;</text>
17: 
18:   <text x="100" y="50" transform="rotate(90,100,50)" style="font-family: monospace;
19:     font-size36px"><tspan style="fill#F00; font-family: serif">@</tspan><tspan
20:       style="fill: #090">--&gt;--&gt;--</tspan>
21:   </text>
22: 
23:   <text x="130" y="50" transform="rotate(270,235,145)" style="font-size: 12px">
24:     SorryI'm a coder, not an artist ;-)</text>
25: 
26: </svg>

[zum Anfang]