Je voudrais savoir pourquoi quand je rajoute un lien "xlink" autour d'un tag "svg" (circle, ...) celui-ci disparait ?

voilà le fichier qui pose problème: (il devrait y avoir 2 cercles mais le 2eme n'y est plus depuis que j'ai rajouté le lien xlink):

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>TEMP</title>
 
<svg width="30cm" height="30cm">
<lien xlink:href="www.google.fr">
<g style="fill-opacity:1.0; stroke:black; stroke-width:0.1cm;">
<circle cx="200 cm" cy="150 cm" r="10" style="fill:black" />
</g>
</lien>
 
<g style="fill-opacity:1.0; stroke:black; stroke-width:0.1cm;">
<circle cx="25 cm" cy="5 cm" r="10" style="fill:black" />
</g>
</svg>
</svg>
[balises code ajoutées par GrandFather - merci d'y penser la prochaine fois]