0
Inserting a SVG Graphic in HTML
How to insert a SVG graphic in HTML?
1 Answer
+ 3
You can either write the SVG code directly in your html body like so:
<svg>
....
</svg>
Or link a local svg file as the source for an image:
<img src="yourfile.svg">



