Answers for "what is 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

Browse Popular Code Answers by Language