Pregunta: ¿Cómo usar una fuente no segura con css? Válido incluso para ie Respuesta: EDITO:
en el #80 tienes una guía para hacer los .eot
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