Let's add the opening tag of this heading from scratch.

<html>
 <body>
  <h1>My favorite things</h1>Raindrops on roses
   Whiskers on kittens
   Bright copper kettles
 </body>
</html>

]]>

Perfect! <h1>, along with its closing tag </h1>, is what we'll use to create the highest level heading in a website.

Just like any other tag, we'll start with <. We'll then add h1 to let the browser know what type of heading it is and end with >.