Reputation: 6726
I'm trying to show an SVG, which, when clicked, links to another page. Here is what I tried:
<a href="foo.html">
<embed src="something.svg" />
</a>
What is the preferred method for doing this?
Upvotes: 0
Views: 59
Reputation: 7941
Don't use the embed tag. Instead use an <img>
tag and the anchor should work just fine.
Upvotes: 2