Alex Flint
Alex Flint

Reputation: 6726

HTML to show a SVG as a link to another page

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

Answers (1)

Mini John
Mini John

Reputation: 7941

Don't use the embed tag. Instead use an <img> tag and the anchor should work just fine.

Upvotes: 2

Related Questions