That's a really awesome tool, and it fixed the problem, thank you very much!
And yes, I only included the Code that was necessary to explain the issue
One additional little hurdle I have come across is that it seems like I can only use Inline-SVG that is embedded within the HTML-File when I'm trying to animate it.
What I mean is that this would animate:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 210 297">
<circle cx="104.35" cy="157.2" r="100.91" fill="#58575a" stroke="#58575a" stroke-width=".04" paint-order="stroke markers fill"/>
</svg>
But this would not:
<img src="images/drawing.svg">
The drawing.svg-File would have the exact same content as the Code I have pasted above.
The image still shows up, just, as I said, no animation.
This is, as far as I know, the correct way to reference the SVG-File, is it not?
Thanks in advance for any help!