03/03/2013, 00:09
|
| | Fecha de Ingreso: febrero-2013
Mensajes: 90
Antigüedad: 11 años, 10 meses Puntos: 0 | |
font-face no funciona Hola, queria añadir un par de tipografias a mi web con la propiedad font-face, pero nose que pasa que no funciona.
@font-face{
font-family:"Avenir LT Std 55 Roman";
src:url(fonts/AvenirLTStd-Roman.otf) url(fonts/AvenirLTStd-Roman.eot) url(fonts/AvenirLTStd-Roman.ttf);
}
@font-face{
font-family:"Bello Pro";
src:url(fonts/BelloPro.otf) url(fonts/BelloPro.eot) url(fonts/BelloPro.ttf);
}
.estilo1{
font-family:"Avenir LT Std 55 Roman";
font-size:12px;
line-height: 150%;
font-style: normal;
}
#name {
margin: 0px 0px 0px 50px;
line-height:75px;
float: left;
font-family:"Bello Pro";
font-size: 36px;
}
He probado también asi, pero nada
@font-face{
font-family:"Avenir LT Std 55 Roman";
src:url(http://www.mipagina.com/fonts/AvenirLTStd-Roman.otf) url(http://www.mipagina.com/fonts/AvenirLTStd-Roman.eot) url(http://www.mipagina.com/fonts/AvenirLTStd-Roman.ttf);
}
@font-face{
font-family:"Bello Pro";
src:url(http://www.mipagina.com/fonts/BelloPro.otf) url(http://www.mipagina.com/fonts/BelloPro.eot) url(http://www.mipagina.com/fonts/BelloPro.ttf);
} |