Convert OTF and TTF fonts to EOT format for web use
Tools to convert fonts from OTF/TTF to EOT format
eot-utils
mkeot
$ mkeot font.ttf > font.eot
$ mkeot font.otf > font.eot
$ for f in *.ttf; do mkeot "$f" > "${f%.ttf}.eot"; done