25/09/2015, 02:03
|
| | Fecha de Ingreso: noviembre-2009
Mensajes: 90
Antigüedad: 15 años Puntos: 0 | |
Respuesta: Tipografias Al final use @fontface
Código:
<style type="text/css">
@font-face {
font-family: prueba;
src: url(tipos/AQUAWAXBLACK.ttf);
}
p {font-family:prueba;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<p>HOLA PROBANDO</p>
</div>
</form>
</body>
</html>
|