logo htlm 5

Ejemplo de font-family para definir el tipo de fuente

Código Resultado

<html>
<head>

<meta charset="iso-8859-15"/>
<style type="text/css">
p{font-family:Helvetica}
h3{font-family:serif}
</style>
</head>

<body>
<p>La familia de esta fuente es Helvetica.</p>
<h3>La familia de esta fuente es serif.</h3>
</body>
</html>