block by aaizemberg 9e5ccaef315fdd894443225e30c16b59

cambiando el cursor (default -> pointer)

Full Screen

index.html

<!DOCTYPE html>
<html>
<head>
 <meta charset="utf-8">
 <meta name="viewport" content="width=device-width">
 <title>la manito</title>
<style>
  .circulos { cursor: pointer; } 
  .textos   { cursor: pointer; } 
 </style>
 </head>
<body>

<svg id="zoom" width="200" height="200">
 <circle class="circulos" cx="100" cy="100" r="10" stroke="green" stroke-width="1" fill="yellow" />
 <a xlink:href="https://gobiernoabierto.cordoba.gob.ar/funcionarios/oficina/intendente/1" target="_blank">
   <text class="textos" x="60" y="125">el intendente</texto>
 </a>
</svg>

</body>
</html>