Tuesday, August 6, 2013

Frame Element(HTML)

FRAME


    • Frame allows you to divide the page into several rectangular areas and to display a separate document in each rectangle.
    • Each of those rectangle is known as “Frame”.
    • Using frames, you can display multiple HTML document in the same browser window.
    • Each HTML document is called a frame, and each frame is independent of the others.


FRAMESET

    • The frameset element holds one or more <FRAMESET> or <FRAME> elements. Each frame element can hold a separate document.

Example:
<frameset cols="25%,50%,25%">
<frame src="frame_a.htm" />
<frame src="frame_b.htm" />
<frame src="frame_c.htm" />
</frameset>
NOFRAME

    • The <noframes> tag is used for browsers that do not handle frames.
    • The noframes element can contain all the elements that you can find inside the body element of a normal HTML page.
    • The noframes element is most used to link to a non-frameset version of the web site or to display a message to users that frames are required.
    • The noframes element goes inside the frameset element.


ROWS
“pixels|percents” defines the row height of each row(vertical) within the frameset. The value of each row height is a comma separated list of sizes
COLS
“pixels|percents” defines the column width of each column(horizontal) within the frameset.The value of each column width is a comma separated list of sizes
ONLOAD
“script” to specify client-side scripting actions to perform when the frame is loaded.
ONUNLOAD
“script” to specify client-side scripting actions to perform when the frame is removed
FRAMEBORDER
To give border around all frames
BORDER
Controls width of all borders
BORDERCOLOR
To change the color of the frame borders
<FRAME> ELEMENT
Defines a frame.
Each frame must contained within a Frameset document that defines the dimension of the frame.
ATTRIBUTE

    • SRC
    • Name
    • NoResize
    • Scrolling-value(Yes,no or auto)
    • Marginheight
    • MarginWidth
    • FrameBorder-Value(0 or 1),Specifies whether or not to display a border around a frame


Related Posts:

  • Define Web Hosting & Virtual Private Network & Voice Over Network Web Hosting || Virtual Private Network || Voice Over Network WEB HOSTING It is a type of Internet hosting service that allows individuals and organizations to make their own website accessible via world wide web. … Read More
  • Domain Name Service && IP Address Domain Name Service Domain name is a way to identify and locate computers connected to the Internet. No two organizations can have the same domain name. A domain name always contains two or more components separated by … Read More
  • Internet And Its Features Web It is an abstraction(concept) and common set of services on top of the Internet. It is a set of protocols and tools that let us share information with each other. World Wide Web It is a collection of linked docume… Read More
  • Internet Concepts Listening the word Internet Concepts the first Question stuck to the mind is.... What is Internet..? Internet is a global network of interconnected computers over world wide web. It is a global web of… Read More
  • Form Elements(HTML) FORM Form on a web page allows user to enter data that is sent to a server for further processing An HTML FORM is a section of document containing normal text, markup and some special elements. That special elements is kno… Read More

0 comments:

Post a Comment