20 - Propiedades relacionadas a fuentes (FORMATO RESUMIDO)



Problema:Definir formatos reducidos para la propiedad font de los elementos h1,h2 y h3. Luego probar con tres títulos los resultados obtenidos.

<!DOCTYPE html>
<html>
<head>
  <title>Problema</title>
  <meta charset="UTF-8">
  <link rel="StyleSheet" href="estilos.css" type="text/css">
</head>
<body>
<h1>Titulo de nivel 1</h1>
<h2>Titulo de nivel 2</h2>
<h3>Titulo de nivel 3</h3>
</body>
</html>
h1 {
  font:30px Helvetica;
}
h2 {
  font:25px Arial;
}
h3 {
  font:20px Courier;
}
Ver solución


Retornar