Elements on a webpage have properties, like their text color. We can access and change these properties in an included style sheet.

Set the color property of the h1 element to blue.

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

</style>
  </head>
<body>
  <h1>Mostly Toilets Store</h1>  
</body>
</html>]]>

Make sure to spell blue.