how to add a svg icon in html code example
Example 1: html svg favicon
<!-- Chrome, Edge, Firefox -->
<link rel="icon" href="favicon.svg">
<!-- Safari -->
<link rel="mask-icon" href="mask-icon.svg" color="#000000">
Example 2: how to add an svg image to html
<body>
<img src="blabla.svg" alt="blabla_is_working">
</body>