Specifies downloading the resource instead of navigating to it.
Specifies the location of the referenced object, expressed as a URL reference.
Specifies the language of the linked resource.
Specifies space-separated valid non-empty URL tokens.
Specifies a referrer policy string.
"" | no-referrer | no-referrer-when-downgrade | origin | origin-when-cross-origin | same-origin | strict-origin | strict-origin-when-cross-origin | unsafe-url strict-origin-when-cross-origin Specifies a space-separated keyword tokens describing the relationship between the location in the document containing the hyperlink and the destination resource.
Specifies the name of the browsing context into which a document is to be opened when the link is activated.
_blank | _parent | _self | _top | <XML-Name> Specifies a Multipurpose Internet Mail Extensions (MIME) type string.
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" hreflang="en">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" ping="https://osbo.com/ping1/ https://osbo.com/ping2/">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" referrerPolicy="">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" referrerPolicy="no-referrer">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" referrerPolicy="no-referrer-when-downgrade">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" referrerPolicy="origin">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" referrerPolicy="origin-when-cross-origin">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" referrerPolicy="same-origin">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" referrerPolicy="strict-origin">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" referrerPolicy="strict-origin-when-cross-origin">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" referrerPolicy="unsafe-url">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" rel="noreferrer">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" target="_blank">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" target="_parent">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" target="_self">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" target="_top">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" target="mytarget">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<a href="/" type="text/html">
<circle cx="50%" cy="50%" r="50vh"/>
</a>
</svg>