Een hyperlink voegt u in met de tag <a></a>. Deze tag heeft de volgende attributen:
attribuut
|
verplicht
|
waarde van het attribuut
|
uitleg
|
xlink:href
|
ja
|
url
|
url van de hyperlink.
|
Mogelijke subtags:
|
desc | title | metadata | defs |
path | text | rect | circle | ellipse | line | polyline | polygon |
use | image | svg | g | view | switch | a | altGlyphDef |
script | style | symbol | marker | clipPath | mask |
linearGradient | radialGradient | pattern | filter | cursor | font |
animate | set | animateMotion | animateColor | animateTransform |
color-profile | font-face
|
Bijvoorbeeld:
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg width="200px" height="200px">
<g>
<a xlink:href="start.htm"><circle cx="50" cy="50" r="20" fill="red"
/><text x="40" y="40" font-family="Comic Sans MS" font-size="20">hyperlink</text></a>
</g>
</svg>
(Bekijk dit voorbeeld).