answersLogoWhite

0

What are frames in HTML?

Updated: 8/10/2023
User Avatar

Wiki User

14y ago

Best Answer

By using frames, you can display more than one HTML document in the same browser window. The frameset tag <frameset> 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, and the source of the HTML to display in each frame. for example <frameset cols="300,400">

<frame src="frame_a.htm">

<frame src="frame_b.htm">

</frameset>

User Avatar

Wiki User

15y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

I do believe you mean an "Iframe"

An Iframe is a code that basically displays a webpage within a webpage.

Example: If I had a site mywebsitename.com, if I used an Iframe, I could display Google.com, Yahoo.com, or any other webpage within my webpage.

The tag for it: <iframe>

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

An Iframe, is an inline frame. It builds a small frame in the middle of your page into which you can put another web page or another item, such as an image. Iframes are not supported on all browsers, so they are best avoided.

An Iframe, is an inline frame. It builds a small frame in the middle of your page into which you can put another web page or another item, such as an image. Iframes are not supported on all browsers, so they are best avoided.

An Iframe, is an inline frame. It builds a small frame in the middle of your page into which you can put another web page or another item, such as an image. Iframes are not supported on all browsers, so they are best avoided.

An Iframe, is an inline frame. It builds a small frame in the middle of your page into which you can put another web page or another item, such as an image. Iframes are not supported on all browsers, so they are best avoided.

An Iframe, is an inline frame. It builds a small frame in the middle of your page into which you can put another web page or another item, such as an image. Iframes are not supported on all browsers, so they are best avoided.

An Iframe, is an inline frame. It builds a small frame in the middle of your page into which you can put another web page or another item, such as an image. Iframes are not supported on all browsers, so they are best avoided.

An Iframe, is an inline frame. It builds a small frame in the middle of your page into which you can put another web page or another item, such as an image. Iframes are not supported on all browsers, so they are best avoided.

An Iframe, is an inline frame. It builds a small frame in the middle of your page into which you can put another web page or another item, such as an image. Iframes are not supported on all browsers, so they are best avoided.

An Iframe, is an inline frame. It builds a small frame in the middle of your page into which you can put another web page or another item, such as an image. Iframes are not supported on all browsers, so they are best avoided.

An Iframe, is an inline frame. It builds a small frame in the middle of your page into which you can put another web page or another item, such as an image. Iframes are not supported on all browsers, so they are best avoided.

An Iframe, is an inline frame. It builds a small frame in the middle of your page into which you can put another web page or another item, such as an image. Iframes are not supported on all browsers, so they are best avoided.

This answer is:
User Avatar

User Avatar

Wiki User

8y ago

In HTML an iframe is used to display a webpage within a webpage. For example, if for some reason I wanted to display the answers.com homepage on my website I could use the code: <iframe src="www.answers.com" width="200" height="200"></iframe>. This would display a 200 by 200 pixel box containing the answers.com homepage on my website (you'd also have to specify the position, but I won't go into that much detail). The user could interact with it and use it, just as they would the regular site, but it would be through your website. I guess the best way to describe it is that it's like putting a physical "window" on your site that lets you see and interact with other websites.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

An Iframe, is an inline frame. It builds a small frame in the middle of your page into which you can put another web page or another item, such as an image. Iframes are not supported on all browsers, so they are best avoided.

This answer is:
User Avatar

User Avatar

Wiki User

15y ago

These are inline frames:

This answer is:
User Avatar

User Avatar

Wiki User

15y ago

the frameset is the page where the frames are located. ~Sarah @ http://flaming-fox.webs.com/

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are frames in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What tags are used to embed one HTML page inside another HTML page without using frames?

&lt;object type="text/html" data="http://www.example.com" style="width:80%; height:300px; margin:1%;"&gt; embedded html without frames&lt;/object&gt;


What are examples of HTML FRAMES?

Frames are used by developers to divide the page into various sections. It can have id, name etc for referencing it further.


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.


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;


What is the HTML feature that divides a webpage into two or more scrollable parts?

The HTML feature that divides a web page into two or more scrollable parts is called a FRAMESET.Its format is as follows ( but has many variations ):This displays if frames are not supported.This code generates two columns ( col1 & col2 ) with widths of "50%".Inside of col1, two pages ( page1.html & page2.html ) will display as rows.The first page will have a height of "50px" ( 50 pixels ) and the second will have a height of "100px" ( 100 pixels ).Inside of col2, one page ( page3.html ) will display spanning the full height of the column.If the browser used does not support frames, the code wrapped in the tag will be displayed.I hope this helped.Answered by EZMAIA Web Design (ezmaia.com)

Related questions

How do you use hyperlinks in frames in a HTML document?

You can use hyperlinks in frames too in an HTML document. You can place the anchor tag out side of a frame.


Which tag is used to define frames in HTML?

&lt;frame&gt;


What tags are used to embed one HTML page inside another HTML page without using frames?

&lt;object type="text/html" data="http://www.example.com" style="width:80%; height:300px; margin:1%;"&gt; embedded html without frames&lt;/object&gt;


Need of frame in HTML?

Frames are used to divide the HTML page into sections. The &lt;frame&gt; tag is used for that purpose.


What are examples of HTML FRAMES?

Frames are used by developers to divide the page into various sections. It can have id, name etc for referencing it further.


Create frame in HTML?

Go To http://www.htmlcodetutorial.com and look for the FRAMES TUTORIAL. It will help you.


Which HTML document type definiton is designed for webpages that use frames?

In HTML 4.01 and XHTML 1.0, the framest document type definition (DTD) was available to create pages using frames.In HTML 5, frames have been deprecated, because the W3C determined that they created a detriment to accessibility and usability.


How do you make a frame in HTML?

Making frames is relatively simple. Start with the basic HTML below. ---- Frameset Example Your browser does not support frames. ---- Now edit a few things. * rows should be changed to cols if you want frames in collumns. If you want frames in rows, leave it as it is. If you want a mixed set of frames ranging from collumns and rows, you'll have to include more framesets where you want the different kind of frame arrangement. See the related links for an example. * size1,size2,size3should be changed to units signifying how large you want the frames to be, respectively. size1 is respective to the first frame you specify, size2 is respective to the second frame you specify and so on. You may use a pixel number, a percentage number, or an asterisk (meaning "the rest" or "whatever is left") as units. An example would be 100,50%,* * frame1.html, frame2.html, and frame3.html need to be changed to the file you want to be displayed in the frame. You may include anything that can be viewed in a browser, such as an HTML document or even a picture. * Your browser does not support framesshould be replaced with the text you want a client to see if their browser does not support frames. You can leave it as it is, if you'd like. See the related links for a few examples.


What is use of frame in HTML?

A frame can be used for dividing page into segments. &lt;frame&gt; attribute can be used to define frames.


What completely breaks an HTML 4.01 Frameset page by NOT showing the frames?

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: &lt;a href="MainPage.htm" target="_top"&gt;Click here to break out of frames&lt;/a&gt;


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


What do you have to do to be a web designer?

Learn the basics of HTML..you can start here: w3schools.com Study advanced HTML. Advanced HTML pages include frames, cascading style sheets and DHTML. Know the basics of good website design. Stay updated on design trends. -------------------- yugenelee.com