ANCHOR TAG - TARGET ATTRIBUTE
Run
<!doctype html>
<html>
    <head>
        <title>
            Creating a hyperlink with target attribute
        </title>
    </head>
    <body>
        <p>Open in new window - 
            <a href="https://www.studytonight.com/code/playground/web/" target="_blank">Go to Web Playground</a>
        </p>
        <p>Open in same window - 
            <a href="https://www.studytonight.com/code/playground/web/" target="_self">Go to Web Playground</a>
        </p>
    </body>
</html>