how to use base tag in html code example
Example 1: html base
<!doctype html>
<head>
<title>This is your title.</title>
<!--Head stuff here-->
</head>
<body>
<!--Body stuff here -->
</body>
</html>
Example 2: HTML base
<!DOCTYPE html>
<head>
<title>HTML base Tag</title>
<base href = "https://www.tutorialspoint.com" />
</head>
<body>
</body>
</html>