25 lines
498 B
XML
25 lines
498 B
XML
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="350"
|
|
height="350">
|
|
<style>
|
|
* {
|
|
fill: none;
|
|
stroke: black;
|
|
stroke-width: 5px;
|
|
}
|
|
</style>
|
|
<rect x="0" y="0" width="350" height="350" />
|
|
<path d="
|
|
M 100 50
|
|
q -30 75 50 250
|
|
L 50 50
|
|
l 0 250
|
|
q 100 -250 250 -250
|
|
s -150 0 -150 125
|
|
s 175 125 175 0
|
|
s -125 -75 -125 0
|
|
s 125 5 125 0
|
|
l -275 0" />
|
|
</svg>
|