does anyone know how to include an SVG file as an image in an XHTML file?
Click on a bank service at the right and drag to an account on the left to connect them.
Click on the submit button to inform the bank of your choices.
doing SVG and xhtml (required for SVG) requires a server modification to the .htaccess file. here it is:
AddType text/html .xhtml
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_ACCEPT} application/xhtml\+xml
RewriteCond %{HTTP_ACCEPT} !application/xhtml\+xml\s*;\s*q=0
RewriteCond %{REQUEST_URI} \.xhtml$
RewriteCond %{THE_REQUEST} HTTP/1\.1
RewriteRule .* - [T=application/xhtml+xml]
I think nothing below IE10 in IE supports SVG without a plugin.