HTML TAG EXAMPLE
Run
<!doctype html>
<html>
    <head>
        <title>
            example of using html tag
        </title>
    </head>
    <body>
        <div>This is an HTML document</div>
        <p>This is our first paragraph</p>
        <h1>This is our first heading</h1>
        <h2>This is second heading</h2>
    </body>
</html>