<span> and <div> are great for using CSS to style websites. We'll learn more about that later when we use both in different files.

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

This is where we're heading. Might look like a lot now, but we'll soon be making and styling websites with ease.