logo htlm 5

Ejemplo de font-style para formatear texto en itálica

Código Resultado

<html>
<head>

<meta charset="iso-8859-15"/>
<style type="text/css">
h3 {font-style:normal}
h4 {font-style:italic}
p {font-style:oblique}
</style>
</head>

<body>
<h3>Estilo de fuente normal</h3>
<h4>Estilo de fuente itálica</h4>
<p>Estilo de fuente oblicua</p>
</body>
</html>