<!-- HTML Example -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Sample HTML Document with Paragraphs</title>
</head>
<body>

    <h1>Welcome to Our Sample Document</h1>

    <p>This is the first paragraph of the document. It introduces the content and provides context for the reader.</p>

    <p>This is a second paragraph. Paragraphs make it easy to break down text into manageable sections.</p>

    <p>For more information, check out our <a href="https://example.com">official website</a>.</p>

</body>
</html>