If we want to group entire tags together and change their style, we can use the <div> tag to catch them.

<html><body>
<div style="color:yellow;background-color:black;text-align:center">
   <h1>A familiar story</h1>
   <p>A long time ago in a galaxy far, far away<br>...</p>
  </div>
 </body>
</html>
]]>

Gorgeous! See how <div> is a power to be reckoned with? It can bring a lot of other tags to its side.

Be sure to start with the opening tag, <div. Then add the style attribute and >, close the tag and add </div>.