What if we want to emphasize things on a webpage? Well, there's a tag for that, and it's called <em>.

 <body>
  <h1>My favorite things</h1>
  <p>
   Raindrops on <em>roses</em><br>
   Whiskers on kittens<br>
   Bright copper kettles<br>
   Warm woolen mittens
  </p>
 </body>
</html>
]]>

Great job! We've just added emphasis to this important word.

Make sure you start with the opening tag and end with the closing tag.