Paragraphs in HTML

by danielkwood

HTML

<html>
  <head>
    <title>Paragraph example</title>
  </head>

  <body>
    <p>This is a paragraph.</p>
    <p>This is another paragraph.</p>
  </body>

</html>

CSS

body{
  min-height: 300px;
}