11 lines
583 B
XML
11 lines
583 B
XML
<svg xmlns="http://www.w3.org/2000/svg" width="400px" height="600px" viewBox="0 0 100 300" preserveAspectRatio="none">
|
|
<rect x="0" y="0" width="100" height="300" fill="none" stroke="blue"/>
|
|
<circle cx="50" cy="50" r="50" fill="green"/>
|
|
<text x="50" y="50" fill="white" font-size="25">hello</text>
|
|
<circle cx="50px" cy="150px" r="50px" />
|
|
<text x="50px" y="150px" fill="white" font-size="25px">hello</text>
|
|
<g transform="rotate(90 50 250)">
|
|
<circle cx="50px" cy="250px" r="0.52in" fill="blue" />
|
|
<text x="50px" y="250" fill="white" font-size="0.26in">hello</text>
|
|
</g>
|
|
</svg> |