Questions tagged [eot]

Embedded OpenType (EOT) fonts are a compact form of OpenType fonts designed by Microsoft for use as embedded fonts on web pages.

47 questions
2
votes
1 answer

Font Awesome 4.1 urls

Anybody knows the absolute URL of the new 4.1 Font Awesome sources (eot, woff, ttf, svg) ? I want to insert as @font-face in CSS like here, I don't want to download the sources or use the minified CSS. Thanks!
István
  • 5,057
  • 10
  • 38
  • 67
1
vote
1 answer

IE refuses to interpret @font-face rule, even with eot file first and "src: local('☺'), ..." hack second

I've done a lot of reading on this, and tried a lot of different things, and still no dice. Here's an example of one of my @font-face rules: @font-face { src: url('/lib/fonts/Museo/Museo500-Regular.eot'); src: local("☺"), …
Abram
  • 413
  • 1
  • 3
  • 13
1
vote
1 answer

c# EOT End of transmission character in string

If I have a byte array and it ends with EOT character when I use: string str = ASCII.Encoding.ASCII.GetString(myByteArray); If I look the content of string str under visual studio is it normal to see it ends with like this "...\u0004"? It seems…
Trax
  • 943
  • 2
  • 12
  • 30
1
vote
0 answers

font-face not working in IE9 only

I've seen several questions asked here and on other blogs but it didn't solve my case. This is my syntax: @font-face { font-family: "texgyreheroscn"; src: url("texgyreheroscn-italic-webfont.eot"); src:…
valerio0999
  • 11,458
  • 7
  • 28
  • 56
1
vote
0 answers

Loading bootstrap font .eot in IE8

Here's the font-face declaration in my customized bootstrap.css : @font-face { font-family: 'Glyphicons Halflings'; src: url('../../fonts/glyphicons-halflings-regular.eot'); src: url('../../fonts/glyphicons-halflings-regular.eot?#iefix')…
1
vote
0 answers

Font-weight and font-style render randomly in IE8

I am working with a template set and in IE8, the webfonts switch randomly between bold, italic, regular. I already saw this question: IE8 Renders font weights randomly, but as mentioned there and can also be seen below, I don't have more than 4…
1
vote
1 answer

WOFF based fonts are not working in Firefox, but fine in other browsers

http://thereferraladvantage.com/preview/ CSS in base.css: @font-face { font-family: 'gotham'; font-weight: 300; font-style: normal; src: url('../fonts/gotham_light.eot'); /* IE9 Compat Modes */ src: url('../fonts/gotham_light.eot?#iefix')…
jeffkee
  • 5,106
  • 12
  • 44
  • 76
1
vote
0 answers

How do i add custom fonts in the font awesome plugin??? Can it be done using EOT file?

I need to add some custom fonts to font-awesome and use it in my website. Will EOT be of any help in doing this? If so what is the procedure to add these custom fonts or is there any other way in which i can do this?
Lakshmi
  • 2,204
  • 3
  • 29
  • 49
1
vote
1 answer

@font-face import not working in offline website/different host using online fonts via CSS in IE only

IE is very strange. I've had a look at MIME types, added a .htaccess file with Header set Access-Control-Allow-Origin "*" AddType…
Oliver Tappin
  • 2,511
  • 1
  • 24
  • 43
0
votes
2 answers

@font-face in IE: Avoid always downloading font?

When using an IE specific font-face declaration like below: @font-face{ font-family:'Arial Narrow'; font-style:normal; font-weight:normal; src:url('../fonts/ArialNarrow.eot'); src:local('Arial Narrow'), local('ArialNarrow'), …
justiceorjustus
  • 2,017
  • 1
  • 19
  • 42
0
votes
1 answer

xxx.eot web font file won't work properly on IIS 6.0 server

I'm using two web fonts 'NanumGothic.eot' and 'NanumGothic.woff', with CSS style like below. This system is hosting web services, based on Windows Server 2003 and IIS 6.0 and local remote MS-SQL Server 2008. @font-face { font-family: ngweb; …
0
votes
0 answers

Converting .TTF files to .EOT using PHP

I want to convert .TTF font files to .EOT with PHP to make script like http://www.kirsle.net/wizards/ttf2eot.cgi I searched a lot and I've got "NONE"
Mohamed Atef
  • 196
  • 1
  • 2
  • 12
0
votes
0 answers

value from php EOT causing javascript map error

trying to render mapSvg via value from php. however having an issue when mapSvg trying to read value from php variable... if I bring in php value into chosen_source, then and do this jQuery('#map-'+chosen_source).mapSvg( then this above line will…
i need help
  • 2,386
  • 10
  • 54
  • 72
0
votes
1 answer

Celtic font - eot, woff, ttf - webfont

I have to say at once that I am no expert, so apologies for asking for your help as follows: I have been using "Celtic (Plain):001.001" font on a Wordpress website for several years without any problems. Now there is a problem - on inspecting the…
Mica
  • 1
  • 3
  • 5
0
votes
0 answers

Can't include EOT font encoded by base64 to inline CSS

I need to include the Roboto Condensed font in .EOT format for IE 7 within my inline CSS in one HTML file after encoding of the font by base64. So first I've encoded the font by PHP code
stckvrw
  • 1,689
  • 18
  • 42