answersLogoWhite

0

What is the difference between table and frame in HTML?

Updated: 8/10/2023
User Avatar

AndreWiramihardja

Lvl 1
11y ago

Best Answer

What Are Frames?

Frames are graphical and logical subdivisions of a single web "page" into two or more sections. Frames allow one to create web sites which are less "linear" than non-framed sites. The idea behind frames is to make a site more "browseable", like one would casually flip through a book. Most current sites use a two-frame format. The first serves as the site navigation index, while the other is the frame holding the selected "content" pages. In case you haven't noticed already, you are using a two-frame site as you navigate Ted's online documentation pages or Chris' home page!

When frames were first introduced, they were received with great enthusiasm. So positive was the response that frames were often abused and became subject to much derision by many in the Web community. In particular, sites would become so heavily framed that it actually hindered easy navigation rather than assisted it. Since the frames craze has since died down, many sites offer alternative frame and non-framed versions (notice a common theme here?) to cater to the tastes of all Web navigators.

As with any other Web authoring resource, use a little common sense when using frames. Don't use frames just for the sake of using them. You first need to ask yourself what it is that you want to do with the site and then try to come up with the tools at your disposal which will help you achieve that objective. If frames are the answer, use them, if not, don't, it's that simple! If you do use them, try to use no more than three frames per page.

What Are HTML Forms?

Forms are essentially what the name implies them to be: HTML documents which allow the user to input values and return the information to the person who created the form. Questionnaires, search engines, order forms, comment requests and guest books are just a few of the myriad ways in which HTML's support for online forms have been implemented.

User Avatar

Wiki User

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

Wiki User

11y ago

In computer history, different browsers displayed webpage formatting in different ways. The normal way to lay out a document was to use an html

tag.

This is not the proper use for this tag. It is actually used for creating tables, with the

defining table rows and
tag defining the table headings,
defining each cell in the table.

The drawback to this method of layout was that because

was not designed for layout purposes, it was very hard to make even small changes to the layout of the site.

Nowadays, instead of using

tags to lay out pages, people often use frames. A frame can either contain content from another page by using the src="page src" attribute on the element. Using this tag, documents can also easily be split up into sections, if, for example, a page needed a navigation bar at the side.

So, in short, the difference between a tag and a

tag is that:

  • A
tag is for tables, and
  • A tag is for formatting and layout.
  • This answer is:
    User Avatar

    User Avatar

    Anonymous

    Lvl 1
    3y ago

    chutiya smjh rakha hai kya

    This answer is:
    User Avatar

    User Avatar

    Anonymous

    Lvl 1
    3y ago

    No

    This answer is:
    User Avatar

    Add your answer:

    Earn +20 pts
    Q: What is the difference between table and frame in HTML?
    Write your answer...
    Submit
    Still have questions?
    magnify glass
    imp
    Continue Learning about Engineering

    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. <frameset rows="40,*"> <frame src="text1.html" name="smasher1"> <frame src="text2.html" name="smasher2"> </frameset> 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 ... <a href="text3.htm" target="smasher1">


    How do you create homepage or web page from event in table format using HTML?

    Homepage can be created using HTML or various other languages. <table> can be used to create tabular format in HTML.


    What is the HTML code for preparing 2rows?

    If you want to create an HTML table with two rows, you use the <table> tag. Here is an example of two rows with a single column: <table> <tr> <td></td> </tr> <tr> <td></td> </tr> </table> If you want additional columns, add as many <td></td> tags between the <tr></tr> tags as you need.


    What is the difference of HTML to the other types of markup language?

    The main difference is that HTML is used to create dynamic web pages. Other than this HTML cannot do much.

    Related questions

    What is the difference between an HTML page and a dhtml page?

    DHTML combines HTML, JavaScript, the HTML DOM, and CSS.


    What is the difference between html and dhtml in hindi?

    hello


    What is the difference between DDR1 and DDR2?

    http://dhivacpt.blogspot.com/2007/10/difference-between-ddr1-and-ddr2.html


    Need of frame in HTML?

    Frames are used to divide the HTML page into sections. The <frame> tag is used for that purpose.


    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.


    What is the difference between client- and dynamic HTML from being used?

    Client side HTML can be seen as dynamic HTML but not much effective. Server Side Dynamic HTML is much more effective.


    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. <frameset rows="40,*"> <frame src="text1.html" name="smasher1"> <frame src="text2.html" name="smasher2"> </frameset> 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 ... <a href="text3.htm" target="smasher1">


    What is the definition of cell spacing?

    Cell spacing specifies the size of the gap between cells in a html table.


    What is the difference between the function of htm and html?

    There are no difference between htm and html. Occasionally, people would drop the L since both are accepted. Certain types of computer will find it confusing if one does not include the L at the end.


    How do you create and use an HTML table?

    HTML tables are created by the <table> command. Inside the table we can use tags like <li>, <ul>,<ol> etc.


    What is use of frame in HTML?

    A frame can be used for dividing page into segments. <frame> attribute can be used to define frames.


    What is the different between table tag and div tag in HTML?

    The table tag is used to create a table, which is a type of block-level element. The div tag is used to create a generic block element. The main difference is that tables are best-suited for tabular data, and divs are best-suited to presentation of non-tabular data.