I want to be able to style/change the various parts/paths of an svg, using css or jquery
After some searching, I realize this can't be done with svg-xml as it is (without using extra js/jquery script or other)
So now I'll go for inline svg
How is the complete tag supposed to look like? I mean the correct markup
This is what I have:
<svg width="200" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 492.69 617.696">
<circle fill="#FFFFFF" stroke="#00ABEB" stroke-width="32" stroke-miterlimit="10" cx="246.16" cy="222.62" r="206.843" />
</g>
</svg>
Do I even need all the version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" ?