logo htlm 5

Ejemplo de los diferentes tamaños de fuentes con font-size.

Código Resultado

<html>
<head>
<title>font-size</title>
<meta charset="iso-8859-15"/>
</head>
<body>
<p style="font-size:xx-small">Tamaño del estilo:xx-small</p>
<p style="font-size:x-small">Tamaño del estilo:x-small</p>
<p style="font-size:small">Tamaño del estilo:small</p>
<p style="font-size:medium">Tamaño del estilo:medium</p>
<p style="font-size:large">Tamaño del estilo:large</p>
<p style="font-size:x-large">Tamaño del estilo:x-large</p>
<p style="font-size:xx-large">Tamaño del estilo:xx-large</p>
<p style="font-size:larger">Tamaño del estilo:larger</p>
<p style="font-size:smaller">Tamaño del estilo:smaller</p>
<p style="font-size:15">Tamaño del estilo:15 pulgadas</p>
<p style="font-size:15pt">Tamaño del estilo:15pt</p>
<p style="font-size:160%">Tamaño del estilo:160%</p>
</body>
</html>