To give a webpage a title, we add <title> and </title> inside the head tags.

 <head>
  <title>My webpage</title>
</head>
<body>
  <h1>My favorite things</h1>
  <p>
  Raindrops on <em>roses</em><br>
  Whiskers on <strong>kittens</strong> 
  </p>
 </body>
</html>]]>

Make sure to pick <title> followed by </title>.