HTML Paragraphs

What is Paragraphs?

A paragraph always starts on a new line, and is usually a block of text.

The HTML <p> element defines a paragraph.

A paragraph always starts on a new line,Like this

Syntax:

Below is <p> element that defines a paragraph.

                          
                            <p>This is paragraphs</p>
                          
                        

Let's see Example:

                          
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Basic HTML Page</title>
</head>
<body>
  <p>This is a Paragraph</p>
</body>
</html>