Paragraphs come in handy when we want to separate different lines of text in the content. 

Let's make two paragraphs with two lines each.

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

Great job! Although, we won't need more than one paragraph for the moment.

First add an opening tag, <p> and then a closing tag, </p>. Then repeat the steps for the second paragraph.