Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/04/2013, 16:48
Avatar de willycarp
willycarp
 
Fecha de Ingreso: enero-2013
Mensajes: 83
Antigüedad: 11 años, 3 meses
Puntos: 0
Problema con @font face

Hola a todos!
Necesito ayuda xq estoy tratando de implementar @font-face y no me funciona.

La fuente que quiero usar se llama bignoodle
El codigo lo generé a traves de http://www.fontsquirrel.com

El css que me creó es el siguiente:

Código CSS:
Ver original
  1. @font-face {
  2.     font-family: 'bignoodletitlingregular';
  3.     src: url('big_noodle_titling-webfont.eot');
  4.     src: url('big_noodle_titling-webfont.eot?#iefix') format('embedded-opentype'),
  5.          url('big_noodle_titling-webfont.woff') format('woff'),
  6.          url('big_noodle_titling-webfont.ttf') format('truetype'),
  7.          url('big_noodle_titling-webfont.svg#bignoodletitlingregular') format('svg');
  8.     font-weight: normal;
  9.     font-style: normal;
  10.  
  11. }


el tema es que si x ejemplo pongo este codigo no me funciona:

Código CSS:
Ver original
  1. #conte_noticia h1 {
  2.     font-family: 'bignoodletitlingregular';
  3.     font-size: 60px;
  4.     color: #A00000;
  5.     text-align: center;
  6. }


Gracias x la ayuda!!!