HTML CSS examples for SVG:svg element
Make an html svg object a clickable link
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> a {<!--from w ww . j av a 2s . c om--> display: inline-block; } object { pointer-events: none; } </style> </head> <body> <a href="http://www.google.com/" target="_blank"> <object data="https://www.java2s.com/style/demo/Opera.png" type="image/svg+xml"> <img src="https://www.java2s.com/style/demo/Firefox.png" style="width: 250px;"> </object> </a> </body> </html>