Webの森.com


<html>
<head>
<title>複数のフレームページ</title>
</head>

<frameset rows="*, 200">
   <frameset rows="200, *">
      <!-- 上のウィンドウ設定 -->
      <frame src="frame_a.html" name="window_a">

      <!-- 中のウィンドウ設定 -->
      <frameset cols="50%, 50%">
         <!-- 左のウィンドウ設定 -->
         <frame src="frame_b.html" name="window_b">

         <!-- 右のウィンドウ設定 -->
         <frame src="frame_c.html" name="window_c">
      </frameset>
   </frameset>

   <!-- 下のウィンドウ設定 -->
   <frame src="frame_d.html" name="window_d">
</frameset>

<noframes>
<body>
   このサイトはフレームに対応したブラウザが必要です。
</body>
</noframes>
</html>