<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width">
<title>
Selector sel1 , sel2
</title>
<style>
/* Selecciona todos los
* h1, div y nav */
h1,
div,
nav {
background-color: yellow;
}
</style>
</head>
<body>
<h1>Selector sel1 , sel2</h1>
<p>Hola.</p>
<nav>Navegación.</nav>
<div>Adios.</div>
</body>
</html>