html cannot load svg code example
Example 1: svg icon not showing html
<div class="social-icon">
<object data="assets/twitter-wrap.svg" type="image/svg+xml"></object>
</div>
Example 2: img svg not loading
<!-- add the xlmns attribute to the svg element -->
<svg viewBox="0 0 24 24"><path d="..."/></svg>
<!-- after -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="..."/></svg>