answersLogoWhite

0

You need to have a link that specifies one page to be in your window, and have its target set as _top to break out of frames. So if you wanted a page called MainPage.htm to be in your window and remove frames, you would have a link such as this:

<a href="MainPage.htm" target="_top">Click here to break out of frames</a>

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

What is a document type that can be used to support frames on a webpage?

Frameset


What tag defines what HTML document to put in each frame?

By using frames, you can display more than one HTML document in the same browser window. The frameset tag defines how to divide the window into frames. Each frameset defines a set of rows or columns to the size, or percentage of the page the frame is. The tag is used within the Frameset tag to assign (define) the source of the HTML to display in each frame. for example


How applie frame tag in HTML?

The following code will create a page with two frames, one above the other, equally sized.. You can enter the filenames of the pages you want for each frame and the names, after the frame src which is the frame source. Top and Bottom are used here to identify the frames. &lt;FRAMESET rows="50%,50%" &gt; &lt;frame src="Your web page" name="Top"&gt; &lt;frame src="Your other web page" name = "Bottom"&gt; &lt;/frameset&gt; In this one, the frames are beside each other and they are named left and right. &lt;FRAMESET cols="50%,50%" &gt; &lt;frame src="Your web page" name="Left"&gt; &lt;frame src="Your other web page" name = "Right"&gt; &lt;/frameset&gt;


What is a frameset tag and its attributes?

The frameset tag is used to define the layout of a web page which uses frames. It defines how many frames, their sizes, and what pages get loaded in each one. A web page which uses frames actually calls for separate web pages to load in each frame. The attributes and further description are all listed here: http://devedge-temp.mozilla.org/library/manuals/1998/htmlguide/tags11.html#1294825


How do you split a page in HTML?

One way is to do it with frames. The following code will create a page with two frames, one above the other, equally sized. You can enter the filenames of the pages you want for each frame and the names, after the frame src which is the frame source. Top and Bottom are used here to identify the frames. &lt;FRAMESET rows="50%,50%" &gt; &lt;frame src="Your web page" name="Top"&gt; &lt;frame src="Your other web page" name = "Bottom"&gt; &lt;/frameset&gt; In this one, the frames are beside each other and they are named left and right. &lt;FRAMESET cols="50%,50%" &gt; &lt;frame src="Your web page" name="Left"&gt; &lt;frame src="Your other web page" name = "Right"&gt; &lt;/frameset&gt; You can adjust the percentage sizes, as long as they add to 100%. You can also have more than 2 frames, in which case you would have extra percentages listed. You would also have additional frame src tags. You can also use tables as a way of splitting a page.


How do you remove the lines formed by frames in HTML page?

Use the attribute Frameborder=0 or Frameborder=No. It can be used in the Frame, Frameset or Iframe tag. 1 or Yes will set it on.


What is the frame in HTML write the program of frame?

In HTML web programming one uses a frameset to create less linear looking websites. Frameset versions were created to make transferring documents that conformed to the old HTML specification easier.


When was picture frames invented?

They evolved over thousands of years but really started showing up as a separate item in the 1700's.


Can a s10 blazer body fit s10 truck frame?

No, the frames from the Blazers and trucks are completely different.


How do you build wooden window frame?

See the related link below which covers the construction of window frames including some interesting cross sections of wooden window frames including provision for pulleys and sash weights and views showing frames for brick, stone and wooden or frame walls.


How do you create frames?

A frameset is a group of web pages that will be shown in a unique grouping web page, so the first step could be to create those independent web pages first.For example, take a look at these three files:--------------------------------------- firstFrame.htmlHi, I am the first frame web page------------------------------------------------------------------------------------------------------- secondFrame.htmlHi, I am the second frame web page----------------------------------------------------------------------------------------------------------- frameSet.html---------------------------------------------------------------* ommited the noframes tag for simplicityI recommend you not to use FRAMES never to avoid indesirable external backlinks issues. See Wikipedia's article critique for more information.See the link to Wikipedia herein.


Frame targeting in HTML?

The tag FRAME in HTML permits you to display more than one HTML document within a single browser window by dividing it into sections known as frames. Frame targeting is controlling which frame the information is going to. Below is a very simple block of code to explain this process. &lt;frameset rows="40,*"&gt; &lt;frame src="text1.html" name="smasher1"&gt; &lt;frame src="text2.html" name="smasher2"&gt; &lt;/frameset&gt; This is setting up the frames and naming them smasher1 and smasher2. When you need to put information into a certain frame you use the TARGET tag. Originally we were displaying text1.html in the first frame named smasher1. Now if we execute the command below text1 is now replaced with text3 in the first frame (smasher1) and the second frame is still displaying text2.html ... &lt;a href="text3.htm" target="smasher1"&gt;