B. El elemento style

Ejemplo

<!DOCTYPE html>
<html lang="es">
<head>
 <meta charset="UTF-8">
 <meta name="viewport"
   content="width=device-width">
 <title>CSS</title>
 <style>
  h1 {
   coloryellow;
   background-colorblue;
  }

  p {
   colorwhite;
   background-colorblack;
  }
 </style>
</head>
<body>
 ...
</body>
</html>