Change Font Size:

HTML framework (Frames)

Use Framework (Frame), you can browser window At the same time, several pages. Frame each set in a web page, the web each Frame independent.

Frameset

<frameset> </ Frameset> decide how to divide Frame. <frameset> Have cols attributes and attribute rows. Use cols attribute that are distributed by Frame; use rows attributes, according to Distribution Frame said.

Frame

By <frame> Tag set this website. <frame> There are src attribute value src website is the path and file name.

Below the purpose of the code is: Frameset will be divided into two, the first in 25 per cent, said that the first column width is the width of the window 25% in the second 75 percent, said first column width is the width of the window of 75%. The first column shows that a.html, second column shows that b.html.

  <frameset Cols="25%,75%" /> 
  <frame Src="../asdocs/html_tutorials/Frame_a.html" /> 
  <frame Src="../asdocs/html_tutorials/Frame_b.html" /> 
  </ Frameset> 

Iframe

Iframe Inline Frame is meant by <iframe> </ iframe> Frame can be placed in an HTML document.

Example

Out at Frame

This example shows how in the browser, also showed that three pages, three pages are shown by the distribution.

Frame-line

This example shows how in the browser, also showed that three pages, three pages is based on the distribution of firms.

Mixed Frameset

This example is the use cols attribute, uses rows attributes, Frame will be flexible distribution.

Frameset attribute the noresize

Noresize attribute can be used to ensure that Frame size. If we do not use noresize attributes, you can use the mouse mobile Frame borders, to change the size of Frame, if installed noresize attributes, it is not a moving boundary.

Frame for navigation

This example shows how to build a Frame for navigation. This includes a navigation Frame HTML, the HTML (the code below) includes a web page list. Click on the web site of any one, in the second Frame will be displayed click on the website.

 <HTML> 
 <HEAD> 
  <TITLE> Humorlist.html </ TITLE> 
  </ HEAD> 
 <BODY> 
  <p> <a Href = "../asdocs/html_tutorials/Frame_a.html" target="showframe" /> a joke <a> </ p> 
  <p> <a Href = "../asdocs/html_tutorials/Frame_b.html" target="showframe" /> joke 2 <a> </ p> 
  <p> <a Href = "../asdocs/html_tutorials/Frame_c.html" target="showframe" /> joke 3 <a> </ p> 
  </ BODY> 
  </ HTML> 

Iframe use

This example shows how, in a HTML document with embedded iframe a web page.