HTML BODY TAG EXAMPLE
Run
<html>
    <head>
        <title>
            An Example of BODY element
        </title>
    </head>
    <body>
        <h1>Main heading</h1>
        <p>Some paragraph text which can have images, code snippet, videos embedded, etc.</p>   
        <h2>Second heading</h2>
        <p>More paragraphs...</p>
        <p>More paragraphs...</p>
    </body>
    
</html>