blob: 449373dec6860ee3824ff666ab721fce61fba247 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<svg:svg width="400" height="200"
xmlns:svg="http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd">
<svg:g transform="matrix(1 0.3 0.2 1.3 30 0)" style="stroke: black; stroke-width: 1; fill: none">
<svg:rect x="20" y="20" width="100" height="100"/>
<svg:line x1="20" y1="20" x2="120" y2="120"/>
<svg:line x1="120" y1="20" x2="20" y2="120"/>
<svg:circle cx="70" cy="70" r="50" style="fill:blue; stroke:red; stroke-width: 3"/>
<svg:path d="m 70 20 l 40 50 -30 20 z" style="stroke: green; stroke-width: 5"/>
<svg:text x="20" y="150">Hello SVG!</svg:text>
</svg:g>
</svg:svg>
|