HTML Paragraphs

HTML Paragraphs

On this page

HTML Paragraphs

<!DOCTYPE html>
    <html>
    
    <head>
        <title>HTML Paragraph</title>
    </head>
    
    <body>
        <p>This is a Paragraph</p>
        <p>This is another Paragraph</p>
    </body>
    
    </html>
    

Output

This is a Paragraph

This is another Paragraph