EXAMPLE OF BASE TAG
Run
<!doctype html>
	<head>
		<title>Example of base tag</title>
		<base href="https://www.wikipedia.org/" target="_blank"/>
	</head>
	<body>
        <p><a href="/wiki/Main_Page">Wikipedia Main page</a></p>
        <p><a href="/wiki/MediaWiki">Wikipedia Media page</a></p>
        
        <!-- Below Anchor tag will get the base URL -->
        <p><a href="/java">Studytonight Java Tutorial</a></p>
        
        <!-- Below Anchor tag will not get the base URL -->
        <p><a href="https://studytonight.com">Studytonight Home page</a></p>
	</body>
</html>