To find the style sheet, the opening link tag needs an href attribute that's set to the style sheet's location.

Set the href attribute to "style.css".

<html>
<head>
<style>
h1 {
color: red;
}

p {
color: blue;
}
</style>
</head>
<body>
  <h1>Water Puns</h1>
  <p>
Why are oceans so meticulous?
They like to be pacific.
  </p>
</body>
</html>]]>