Frames?

I would like to use something like frames in my webpage, something that had a central page separeted from the rest so that when you click a link you don't have to download the hole page. Altought I have no ideia how to do this, please help, what should i use so that i can have a top made of links, tha is independent from the rest of the page when you download it

Thank you




Answer this question

Frames?

  • lloydsantos

    Using either a frameset or an inline frame (<IFRAME>) would be the easiest way to achieve this.

    Frameset Example:
    <FRAMESET rows="30,*">
    <FRAME src="http://www.yahoo.com">
    <FRAME src="http://www.microsoft.com">
    </FRAMESET>


    IFrame Example:
    <HTML>
    <BODY>
    Parent page
    <IFRAME src="http://www.microsoft.com" width="100%" height="600px"></IFRAME>
    </BODY>
    </HTML>


  • Frames?