1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| <svg xmlns="http://www.w3.org/2000/svg">
width="500px"
height="500px"
viewBox="0 0 100 100"
<rect x='10' y='10' width='20' height='10'/>
<polygon points="0,0 10,0 20,5 5,5 0,0"/>
<circle cx='20' cy='20' r='5'/>
<ellipse cx='40' cy='30' rx="10" ry="50" />
<line x1="40" x2="0" y1="40" y2="0" stroke="black" stroke-width="5"/>
<polyline points="45,0 50,0 50,15 40,15" fill="transparent" stroke="black" stroke-width="2"/>
<text x="10" y="50" font-size="20"> hello </text> </svg>
|