files/en-us/web/svg/reference/element/a/index.md
The <a> SVG element creates a hyperlink to other web pages, files, locations in the same page, email addresses, or any other URL. It is very similar to HTML's {{htmlelement("a")}} element.
SVG's <a> element is a container, which means you can create a link around text (like in HTML) but also around any shape.
{{svginfo}}
download
hreflang
interestfor {{experimental_inline}} {{non-standard_inline}}
<a> element as an interest invoker. Its value is the id of a target element that will be affected in some way (normally shown or hidden) when interest is shown or lost on the invoker element (for example, by hovering/unhovering or focusing/blurring it). See Using interest invokers for more details and examples.
Value type: <string>; Default value: none; Animatable: noping {{experimental_inline}}
PING will be sent by the browser (in the background). Typically used for tracking. For a more widely-supported feature addressing the same use cases, see {{domxref("Navigator.sendBeacon()")}}.
Value type: <list-of-URLs>; Default value: none; Animatable: noreferrerpolicy
no-referrer | no-referrer-when-downgrade | same-origin | origin | strict-origin | origin-when-cross-origin | strict-origin-when-cross-origin | unsafe-url; Default value: none; Animatable: norel
_self | _parent | _top | _blank | <XML-Name>; Default value: _self; Animatable: yestype
This element implements the {{domxref("SVGAElement")}} interface.
@namespace svg url("http://www.w3.org/2000/svg");
html,
body,
svg {
height: 100%;
}
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<!-- A link around a shape -->
<a href="/docs/Web/SVG/Reference/Element/circle">
<circle cx="50" cy="40" r="35" />
</a>
<!-- A link around a text -->
<a href="/docs/Web/SVG/Reference/Element/text">
<text x="50" y="90" text-anchor="middle"><circle></text>
</a>
</svg>
/* As SVG does not provide a default visual style for links,
it's considered best practice to add some */
@namespace svg url("http://www.w3.org/2000/svg");
/* Necessary to select only SVG <a> elements, and not also HTML's.
See warning below */
svg|a:link,
svg|a:visited {
cursor: pointer;
}
svg|a text,
text svg|a {
fill: blue; /* Even for text, SVG uses fill over color */
text-decoration: underline;
}
svg|a:hover,
svg|a:active {
outline: dotted 1px blue;
}
{{EmbedLiveSample('Example', 100, 100)}}
[!WARNING] Since this element shares its tag name with HTML's
<a>element, selectingawith CSS or {{domxref("Document.querySelector", "querySelector")}} may apply to the wrong kind of element. Try the {{cssxref("@namespace")}} rule to distinguish the two.
{{Specifications}}
{{Compat}}