H. La lista de selectores sel1 , sel2

Ejemplo

Salida

Ábrelo en otra pestaña.

Revísalo en gilpgedit.

<!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-coloryellow;
  }
 </style>
</head>
<body>
 <h1>Selector sel1 , sel2</h1>
 <p>Hola.</p>
 <nav>Navegación.</nav>
 <div>Adios.</div>
</body>
</html>