Ver Mensaje Individual
  #4 (permalink)  
Antiguo 19/11/2017, 15:55
domichis
 
Fecha de Ingreso: julio-2014
Mensajes: 59
Antigüedad: 9 años, 9 meses
Puntos: 0
Respuesta: Leer fuente css desde servidor

Cita:
Iniciado por domichis Ver Mensaje
En eso tienes razón sin embargo sigue sin leer la fuente

Código HTML:
<!DOCTYPE HTML>
<html>
<head>
	<meta http-equiv="content-type" content="text/html" />
<title>Fuente</title>
</head>

<body>


<style>



@font-face {
    font-family: mifuente;
    src: url('http://localhost/fuentes/YanoneKaffeesatz-Light.ttf');
}

p {

    font-family:  mifuente;
    font-size: 150px;
} 


</style>


<p>Hola Este es mi tipo de fuente</p>

</body>
</html> 
He intentado asi:

font-family: mifuente;
font-family: "mifuente";
font-family: 'mifuente';