Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/11/2012, 14:50
alvaro_trewhela
Invitado
 
Mensajes: n/a
Puntos:
Font face todos los navegadores

Hola a todos estoy armando una web y me pidieron una tipografia especifica, tengo las fuentes en tff, y eot. Mi CSS esta asi:

css:

Código CSS:
Ver original
  1. @font-face {  
  2. font-family: 'menu_face';  
  3. src: url('../fuentes/fuente.ttf') format('truetype');  
  4. }
  5.  
  6. @font-face {  
  7. font-family: 'menu_face';
  8. src: url('../fuentes/fuente.eot');
  9. }
  10.  
  11. h1.menulink{ font-family: 'menu_face'; }

mi html

Código HTML:
Ver original
  1.     <link href="css/style.css" rel="stylesheet" type="text/css">
  2. </head>
  3.  
  4. <h1 class="menulink">My First Heading</h1>
  5.  
  6. <p>My first paragraph.</p>
  7.  
  8. </body>
  9. </html>

Y no se cambia la fuente, me podrian decir que estoy haciendo mal?