Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/12/2013, 17:41
Farothx
 
Fecha de Ingreso: octubre-2010
Mensajes: 45
Antigüedad: 13 años, 6 meses
Puntos: 2
No aparece mi font-face

estoy trabajando en esta web y comprueba que anda cualquier font menos las dos que quiero usar.
serían Satellite y Sertig
en caso de que no funcionen puse Lato, que esta en mi servidor como las otras dos.
y Bonbon, quería probar si me llamaba otras fonts... : P
yo veo todo bien en el css no termino de entender porque no funciona

la web: http://roulecortinas.com.ar/

Código CSS:
Ver original
  1. @font-face {
  2.             font-family: 'Sertig';
  3.             font-style: normal;
  4.             font-weight: 200;
  5.             src: url(http://roulecortinas.com.ar/fonts/Sertig.woff) format ('woff'), url (http://roulecortinas.com.ar/fonts/Sertig.eot);
  6.           }
  7.  
  8. }
  9.  
  10. @font-face {
  11.             font-family: Satellite;
  12.             src: url(http://roulecortinas.com.ar/fonts/Satellite.ttf) format ("truetype"), url (http://roulecortinas.com.ar/font/Satellite.eot) format(woff);
  13.             }
  14.  
  15. @font-face {
  16.   font-family: 'Bonbon';
  17.   font-style: normal;
  18.   font-weight: 400;
  19.   src: url(http://themes.googleusercontent.com/static/fonts/bonbon/v3/R4_nXuc6m_m-h2NT2U0AY-vvDin1pK8aKteLpeZ5c0A.woff) format('woff');
  20. }
  21.  
  22.  
  23. h1 {font-family: Satellite, Bonbon;}
  24.  
  25. h2, h3  {font-family: Sertig, Lato}