You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the page is using font-awesome icons as a font and I think it's worthy to change to SVG icons.
The page has to download the whole font-awesome's css (with icons that are not used) and 2 different font files, which can not be gziped, since they are binary files.
Maybe changing to SVG files will be better. Usually the drawback of using SVG is that you cannot change its color (when loaded via <img /> tag), but in this page the colors are not dynamic.
I don't know if it's better to inline the SVGs or load them via <img /> tags, but I believe that in both cases it would be better than load the whole css file + two 80kb binary files.
The text was updated successfully, but these errors were encountered:
Currently the page is using font-awesome icons as a font and I think it's worthy to change to SVG icons.
The page has to download the whole font-awesome's css (with icons that are not used) and 2 different font files, which can not be gziped, since they are binary files.
Maybe changing to SVG files will be better. Usually the drawback of using SVG is that you cannot change its color (when loaded via
<img />
tag), but in this page the colors are not dynamic.I don't know if it's better to inline the SVGs or load them via
<img />
tags, but I believe that in both cases it would be better than load the whole css file + two 80kb binary files.The text was updated successfully, but these errors were encountered: