Struggling to implement the image in the template using both the img tag and as a background. Despite having the correct path to the icon, neither method seems to work.
Check out the code snippet here
<div>
<a href="#" class="icon"
>
<img src="../assets/icons/icon.svg" alt="" />
</a>
</div>
<styles>
.icon {
background: url(../assets/icons/icon.svg) 50% 50% no-repeat;
}
</styles