HTML/CSS/Meta Tags/base

Материал из Web эксперт
Перейти к: навигация, поиск

"base" sets a base URL for the website

    
<html>
   <head>
   <title>base element example</title>
      <base href="http://www.wbex.ru/" target="_blank">
   </head>
   <body>
       <p>
         <a href="index.htm">Click here</a> to go to the page.
       </p>
   </body>
</html>