blob: 91bd552499c44ff47b34fec19f15837109c850be (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<svg:svg width="400" height="200"
xmlns:svg="http://www.w3.org/2000/svg">
<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>
|