HTML cannot do that but JavaScript, PHP and other server-side languages can.
Here's a JavaScript example:
Code:
<SCRIPT>
parent.top.location.href = "http://www.blahblah.biz";
</SCRIPT>
Add that between the "<HEAD>" tags in your HTML file, change th http://www.blahblah.biz to whatever you want and your done.
That code will redirect the page immediately, typically befor any body content is displayed.
|