フレーム
 左右2分割

左:left
右:right
left right
 
xxx-f.html <frameset cols="50%,50%">
  <frame name="left" src="left.html">
  <frame name="right" src="right.html">
  <noframes>
  <body>
  <p>このページを表示するには、フレームをサポートしているブラウザーが必要です。</p>
  </body>
  </noframes>
</frameset>
上下2分割

上:top
下:bottom
 
top
bottom
xxx-f.html <frameset rows="50%,50%">
  <frame name="top" src="top.html">
  <frame name="bottom" src="bottom.html">
  <noframes>
  -----------------------------------
</frameset>
左(上下2分割) 右分割なし

左上:top
左下:bottom

右:right
 
top right
bottom
xxx-f.html <frameset cols="*,100">
  <frameset rows="100,*">
    <frame name="top" src="top.html">
    <frame name="bottom" src="bottom.html">
  </frameset>
  <frame name="right" src="right.html">
  <noframes>
  -----------------------------------
</frameset>
左(上下2分割) 右(上下2分割)

左上:top
左下:left

右上:right
右下:bottom
 
top right
left bottom
xxx-f.html <frameset cols="50%,50%">
  <frameset rows="100,*">
    <frame name="top" src="top.html">
    <frame name="left" src="left.html">
  </frameset>
  <frameset rows="*,100">
    <frame name="right" src="right.html">
    <frame name="bottom" src="bottom.html">
  </frameset>
  <noframes>
  -----------------------------------
</frameset>