Joined March 2014
·
Achievements
49 Karma
0 Total ProTip Views
Nephila Komaci
Have at least one original repos where PHP is the dominant language
Forked
Have a project valued enough to be forked by someone else
Charity
Fork and commit to someone's open source project in need
Python
Would you expect anything less? Have at least one original repo where Python is the dominant language
Lab
Have at least one original repo where C# is the dominant language
I found a better solution. You just need put the SVG before all other font types and the Chrome will automatic use it instead of Woff. Firefox will use Woff and IE will use EOT (and for avoid IE bugs it's a good idea put SVG after EOT);
https://gist.github.com/Gnuns/9749722
@font-face
{
font-family: 'echovoice';
src:url('/fonts/echovoice.eot');
src: url('/fonts/echovoice.eot?#iefix') format('embedded-opentype'),
url('/fonts/echovoice.svg#icomoon') format('svg'),
url('/fonts/echovoice.woff') format('woff'),
url('/fonts/echovoice.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}