HTML BLOCKQUOTE TAG EXAMPLE
Run
<!doctype html>
<html>
    <head>
        <title>
            Example for blockquote tag
        </title>
    </head>
    <body>
        <h2>Studytonight.com</h2>
        <p>Studytonight is the best place to learn coding online.</p>
        <p>We provide simple, easy to understand and detailed tutorials for various programming languages like Python, Java, HTMl, CSS.</p>
        <p>Here is a quote by our founder:</p>
        <blockquote>
            <p>There is no distance you can't cover, just keep walking.</p>
            - <cite>Abhishek Ahlawat</cite>
        </blockquote>
        
    </body>
</html>