svg icons are
superior to pngs when it comes to web performance because theyre scalable w/o losing quality.
>Google recommends using vector images like SVGS as much as possible in their guides.heres a quick tip:
- convert all your logos and buttons from. png or other formats into svg
<!-- Before --><img src="logo. png" alt=" /><!-- After (better) --><svg width='10' height='24'><path d= /></svg>
Why it matters:search engines cant read text in images, but they have no problem w/ svgs. this means your logo or any important icon on the page could be a ranking factor if done right.
Pro tip:use tools like canva to easily create and export icons as. svg files.
>SVG saves 90% of file size over PNG!try it out, see what improvements you can make with your site's visuals