An illustration that I want to include in a site is 28.1 times smaller in SVG format than the same illustration saved as a PNG.
Unfortunately, I have to cater for browsers that aren't SVG-enabled. So I'm still including the PNG as an alternative, like so:
<object type="image/svg+xml" data="illustration.svg">
<img src="illustration.png" alt="alternate description">
</object>
Will SVG enabled browsers ignore the PNG in this case or will it still get loaded in the background somehow? (i.e. am I saving on overall load time?)
