CITE TAG EXAMPLE
Run
<!doctype html>
<html>
    <head>
        <title>
            Example of citation
        </title>
    </head>
    <body>
        <blockquote>
            <p>
                There is no distance you can't travel, just keep walking.
            </p>
            <p>- <cite>Abhishek Ahlawat</cite></p>
        </blockquote>
        <p>In the example above, we used the &lt;cite&gt; tag with the &lt;blockquote&gt; tag, but we can also use it with <cite>normal text</cite>.</p>
    </body>
</html>