HTML Paragraphs

HTML element <p> defines a paragraph.

A paragraph is a block of text, that can extend multiple lines on the display.

A paragraph always starts on a new line.

Browsers interpret the paragraph element and display its content on a new line.

Example

<!doctype html>
<html lang="en">
<head>
</head>
<body>
    <h1>Paragraph</h1>
    <p>
        Some paragraph text goes here.Some paragraph text goes here.
        Some paragraph text goes here.Some paragraph text goes here.
        Some paragraph text goes here.Some paragraph text goes here.
        Some paragraph text goes here.Some paragraph text goes here.
        Some paragraph text goes here.Some paragraph text goes here.
        Some paragraph text goes here.Some paragraph text goes here.
        Some paragraph text goes here.Some paragraph text goes here.
        Some paragraph text goes here.Some paragraph text goes here.
    </p>
</body>
</html>

Overall

HTML paragraphs are used to add content that extends multiple lines.