How to use the HTML <base> element to specify the base URL of the web page

1 Answer

0 votes
<!DOCTYPE html>
<html>
<head>
  <base href="https://www.collectivesolver.com/">
</head>
<body>

<img src="/images/Bonsai_Trees.jpg">

</body>
</html>

 



answered Dec 27, 2018 by avibootz
...