Buenas tardes
Así estoy insertando una fuente:
Código HTML:
Ver original<link rel="stylesheet" href="css/fuentes.css" type="text/css" />
Código CSS:
Ver original@font-face {
font-family: HartingPlain;
src: url("Harting_plain-webfont.eot") /* EOT file for IE */
}
@font-face {
font-family: HartingPlain;
src: url("Harting_plain-webfont.ttf") /* TTF file for CSS3 browsers */
}
@font-face {
font-family : HartingPlain;
src: url('Harting_plain-webfont.woff');
}
Código CSS:
Ver original.container{
font-family: HartingPlain;
color: #F00;
font-size: 20px;
width:450px;
height:100px;
outline:none;
}
Una carpeta llamada "fuentes":
Harting_plain-webfont.eot
Harting_plain-webfont.svg
Harting_plain-webfont.ttf
Harting_plain-webfont.woff
Pero no cambia la fuente.
¿Qué tengo mal?
Gracias por su ayuda