Cabecera: header


Código:

<!doctype html>
<html>
	<head>
		<meta charset="utf­-8">
		<title>Herencia</title>
		<style type="text/css">

			/* Puntuación: inline, id, clase, elemento   */

			* { font-weight: bold; } /* 0001 */
			h1 { font-size: 28px; } /* 0001 */
			#caja h1 { text-align: center; }  /* 0101 */
			.cabecera > h1 { color: red; }  /* 0011 */
		</style>
	</head>
	<body>
		<div id="caja">
			<header class="cabecera">
				<h1 style="margin-top: 3em;">Cabecera: header</h1> <!-- 1000 -->
			</header>
		</div>
	</body>
</html>

Nota:

En el enunciado falta un guión entre el "utf" y el "8".