0

I have a site that uses custom fonts. I've got the font form the designer in oft format. I've used a converter to convert them to eot format.

and added the following code to the css

@font-face {
    font-family: 'AdumaFOTRegular';
    src: url('fonts/AdumaFOT-Regular.eot');
    src: local('AdumaFOTRegular'), local('AdumaFOTRegular'), url('fonts/AdumaFOT-Regular.otf') format('opentype');
}

This works great in FF and chrom but doesn't work in IE. The sample site is here: http://test.hannitcohen.co.il/eshkol/

hannit cohen
  • 350
  • 1
  • 3
  • 10
  • possible duplicate of [How to embed fonts in HTML?](http://stackoverflow.com/questions/220236/how-to-embed-fonts-in-html) – Pekka Sep 03 '10 at 08:39
  • See the 2nd answer for a complete rundown on how to make things work in all browsers – Pekka Sep 03 '10 at 08:40

1 Answers1

1

Some converters don't make a usable .eot converted font. When it comes to converting fonts into a .eot, I've had success with this site: http://www.kirsle.net/wizards/ttf2eot.cgi

Raj
  • 541
  • 4
  • 7