Results 1 to 6 of 6

Thread: HTML Frames

  1. #1
    Join Date
    Nov 2009
    Posts
    712

    HTML Frames

    Hello, I am new in learning HTML. I want some of the details about the HTML tag Frame. If anyone is having in detail information about the HTML Frame Tag then please provide me that. I have searched on internet but, unable to get more details about it.

  2. #2
    Join Date
    Apr 2008
    Posts
    1,948

    Re: HTML Frames

    HTML Frame Tags:
    • <frame /> : It is used to define frame in your window.
    • <frameset> : Mostly used to define the frameset.
    • <noframes> : If your content don't support for the frames then it can show your content.
    • <iframe> : This is used to show inline frame.

  3. #3
    Join Date
    May 2008
    Posts
    2,012

    Re: HTML Frames

    You can able to understand use of frame tag in your page from the given line of code:
    Code:
    <html>
    
    <frameset cols="40%,40%,40%">
      <frame src="one.htm" />
      <frame src="two.htm" />
      <frame src="three.htm" />
    </frameset>
    
    </html>

  4. #4
    Join Date
    Apr 2008
    Posts
    2,005

    Re: HTML Frames

    If you are using <frame> tag in your HTML document then it will provide you specific Window that is also called as frame within the frameset. You can make use of the different attributes in your frameset for providing border, scrolling and also for the resizing facility. So, just make use of it and it will provide you better look and feel in your document.

  5. #5
    Join Date
    May 2008
    Posts
    2,297

    Re: HTML Frames

    If you want basic information about the Frame in HTML then the example below will help you.

    Code:
    <!DOCTYPE HTML "http://forums.techarena.in">
    <HTML>
    <HEAD>
    <TITLE>Frame example</TITLE>
    </HEAD>
    <FRAMESET column="20%, 80%">
      <FRAMESET row="100, 200">
          <FRAME src="frame1.html">
          <FRAME src="frame2.gif">
      </FRAMESET>
      <FRAME src="frame3.html">
      <NOFRAMES>
          <P>Frame contains:
          <UL>
             <LI><A href="frame1.html">Contents </A>
             <LI><IMG src="frame2.gif" alt="Content two">
             <LI><A href="frame3.html">Contents Three</A>
          </UL>
      </NOFRAMES>
    </FRAMESET>
    </HTML>

  6. #6
    Join Date
    Oct 2005
    Posts
    2,393

    Re: HTML Frames

    If you want details about the Html frames the you need to search for the following tags related to frames in html:
    1. <frame />
    2. <noframes>
    3. <iframe>
    4. <frameset>

Similar Threads

  1. Alternatives which can be used instead of frames in html
    By Carlton in forum Software Development
    Replies: 5
    Last Post: 14-01-2010, 06:15 PM
  2. Frames per Second FPS
    By Renderman21 in forum Software Development
    Replies: 3
    Last Post: 23-02-2009, 03:43 PM
  3. HTML Problems with frames
    By kyosang in forum Software Development
    Replies: 2
    Last Post: 03-02-2009, 05:03 PM
  4. FPS (frames per second)
    By Theophilus in forum Overclocking & Computer Modification
    Replies: 1
    Last Post: 27-10-2008, 03:37 PM
  5. After the frames?
    By Rixwel in forum Software Development
    Replies: 5
    Last Post: 15-09-2008, 07:23 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,965,350.07437 seconds with 17 queries