If we want to group a set of words for example and change their color, we can use the <span> tag.

<html><body><h1>A familiar story</h1><p>A <span style="color:red;">long time ago</span> in a galaxy far, far away ...</p>
  </div>
 </body>
</html>
]]>

Great job! Anytime we want to change something inside another tag, we can use the <span> tag.

The opening tag that comes with the style attribute goes before the closing tag.