Answers for "use of base tag in html"

0

html base

<!doctype html>
<head>
<title>This is your title.</title>
<!--Head stuff here-->
</head>
<body>
<!--Body stuff here -->
</body>
</html>
Posted by: Guest on April-05-2021
0

HTML base

<!DOCTYPE html>

   <head>
      <title>HTML base Tag</title>
      <base href = "https://www.tutorialspoint.com" />
   </head>

   <body>
   </body>

</html>
Posted by: Guest on May-24-2021
1

base tag after link tag

<base href="https://www.example.com/">
<base target="_blank"> 
<base target="_top" href="https://example.com/">
Posted by: Guest on October-06-2020

Browse Popular Code Answers by Language