The HTML Frame Element


  • The <frame> tag  defines one particular window (frame) within a frameset.
  • In the example below we have a frameset with 2 columns. The first column in set at 25% of the width of the browser window. The second column in set at 75% of the width of the browser window.
  • The document "frame_a.html" is put into the first column and the document "frame_b.html" is put into the second column.

Example :
<frameset cols="25%,75%">
<frame src="frame_a.html"/>
<frame src="frame_b.html"/>
</frameset>