Tema 6, ejercicio opcional

<html>
<head>
<meta charset="utf­8">
<title>Herencia</title>
<style type="text/css">
#caja header h1{font-size: 0.8em;} /* Puntuacion: 0,1,0,2 */
#caja .cabereca h1{font-family: 'Pt Sans Narrow', sans-serif;} /* Puntuacion: 0,1,1,1 */
header h1{background-color: red;} /* Puntuacion: 0,0,0,2 */
h1 {line-height: 25px;} /* Puntuacion: 0,0,0,1 */
h1 {color:blue;} /* Puntuacion: 0,0,0,1 */
</style>
</head>
<body>
<div id="caja">
<header class="cabecera">
<h1>Cabecera: header</h1>
</header>
</div>
</body>
</html>