Setting the default target frame for links in HTML (HTML + SharePoint)
Never too old to learn a neat trick:
<html>
<head>
<base target="_blank">
</head>
<body>
<a href="http://www.macaw.nl">macaw</a>
</body>
</html>
Now all links open up in a new window!
Found this trick when working with FrontPage on a SharePoint page. When you select page properties, you can set the default target frame in the “General“ tab, which generates the base target code made bold above.