Setting default target frame
by Sanju[ Edit ] 2010-01-03 18:12:05
Setting default target frame
One of the "new" features in HTML 3.0 is the ability to utilize frames. Frame have many useful functions. One way to better control which frame a link is opened in, is the use of the TARGET command. For example, to open a document named index.html in a frame named Main, you could do something along these lines:
<A HREF="news.html" TARGET="Main">Click for Hosting</A>
If you want to set the default target frame to Main, you can insert the following line into the beginning of your HTML document:
<BASE TARGET="Main">