Si hace unos meses comentaba la forma de usar una fuente no segura para firefox (
@font-face en FF 3.1 o cómo usar una bonita fuente), ahora me he encontrado que dicha manera es reconocida por la mayoría de los navegadores formales, EXCEPTO QUIEN YA OS IMAGINÁIS.
Así que para ie:-p hay que recurrir a otro hack.
Aquí tienes el css:
Cita: <style type="text/css" media="screen">
h1 {
font-family:'stencil', georgia, serif;
}
/* TODOS LOS NAVEGADORES MODERNOS*/
@font-face{
font-family:'stencil';
src: url('ruta_en_nuestro_servidor/stencil.ttf') format('truetype') /*u ('opentype') si lo fuera*/;
}
</style>
/* PARA INTERNET EXPLORER*/
<!--[if IE]>
<style type="text/css" media="screen">
@font-face{
font-family:'stencil';
src: url('ruta_en_nuestro_servidor/stencil.eot);
}
</style>
<![endif]-->
A divertirse.
Aquí lo vi
aquí también
Vale, en castellano en
anieto2k
Gracias Daniel por advertir el error