1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="80" height="80" version="1.1"
xmlns="http://www.w3.org/2000/svg">
<rect fill="#ddddff" stroke="#555555" stroke-width="4"
x="14" y="6" width="56" height="72"/>
<polyline stroke="#555555" stroke-width="4" fill="none"
points="22,42 62,42"/>
<polyline stroke="#555555" stroke-width="4" fill="none"
points="32,32 22,42 32,52"/>
<polyline stroke="#555555" stroke-width="4" fill="none"
points="52,32 62,42 52,52"/>
<polyline stroke="#555555" stroke-width="4" fill="none"
points="42,14 42,70"/>
<polyline stroke="#555555" stroke-width="4" fill="none"
points="32,24 42,14 52,24"/>
<polyline stroke="#555555" stroke-width="4" fill="none"
points="32,60 42,70 52,60"/>
</svg>
|