@font-face [Internet Explorer]

martes, 4 de noviembre de 2008 by Azielito

Via anieto2k me encuentro con un ejemplo de CSS donde implementan esta "clase" de CSS, o sea, esta nos sorve para agregar una fuente que nosotros querramos a nuestra página web, el codigo es el siguiente


<style type="text/css" media="screen">
h1, h2, h3, p, td{
font-family:'Fontin-Regular', georgia, serif;
}


/* TODOS LOS NAVEGADORES MODERNOS*/
@font-face{
font-family:'Fontin-Regular';
src: url('Fontin-Regular.otf') format('opentype');
}
</style>


/* PARA INTERNET EXPLORER*/
<!--[if IE]>
<style type="text/css" media="screen">
@font-face{
font-family:'Fontin-Regular';
src: url('Fontin-Regular.eot');
}
</style>
<![endif]-->


Y el ejemplo ya hecho

http://jontangerine.com/silo/typography/font-face/

Filed under having  

0 comentarios: