HTML Paragraph Tag


The HTML <p> element defines a paragraph.

Example
<html>
  <head>
    <title>HTML Paragraph</title>
  </head>
  <body>
    <p>It had become a far too common an event in her life. She has specifically placed the key to the box in a special place so that she wouldn't lose it and know exactly where it was when the key was needed.It had become a far too common an event in her life. She has specifically placed the key to the box in a special place so that she wouldn't lose it and know exactly where it was when the key was needed.</p>
  </body>
</html> 
Try it Yourself

Output:

It had become a far too common an event in her life. She has specifically placed the key to the box in a special place so that she wouldn't lose it and know exactly where it was when the key was needed.It had become a far too common an event in her life. She has specifically placed the key to the box in a special place so that she wouldn't lose it and know exactly where it was when the key was needed.


HTML Line Breaks

The HTML <br> element defines a line break. Use <br> if you want a line break (a new line) without starting a new paragraph.

Example
<p>This is a<br>sample line.</p>
Try it Yourself

Output:

This is a
sample line