blob: 6b0a130d7f66750e5d3abd0d43d8014a3eb56d5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<svg width="300" height="200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<a xlink:href="http://example.com/1">
<ellipse cx="75" cy="50" rx="60" ry="30"/>
<text x="75" y="50" fill="#fff" text-anchor="middle" font-size="16">A</text>
</a>
<a xlink:href="http://example.com/2">
<ellipse cx="225" cy="50" rx="60" ry="30"/>
<text x="225" y="50" fill="#fff" text-anchor="middle" font-size="16">B</text>
</a>
<a xlink:href="http://example.com/1">
<ellipse cx="150" cy="150" rx="60" ry="30"/>
<text x="150" y="150" fill="#fff" text-anchor="middle" font-size="16">C</text>
</a>
</svg>
|