Copy the code and save it as a .svg file.
It can be used like a image.
It can be used like a image.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="" fill="" stroke="">
</svg>
Copy the code and insert it into the .html file.
<svg viewBox="" fill="" stroke="">
</svg>
Copy the code and insert it into the .html file.
The <symbol> element is used to define graphical template objects which can be instantiated by a <use> element.
See here for more information.
The <symbol> element is used to define graphical template objects which can be instantiated by a <use> element.
See here for more information.
<svg style="display: none;"><symbol id="svg-">
</symbol></svg>
<svg viewBox=""><use href="#svg-" fill="" stroke=""></use></svg>