このフレームのHTML

この3つのウィンドウのフレームを表示している HTML分を紹介します。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-2022-JP">
<title>3ウィンドウのフレーム</title>
</head>

<frameset rows="180,*" title="フレームのサンプル">
  <frame src="sample_70-1-1.html" name="top">
  <frameset cols="200,*" title="左右のフレーム">
    <frame src="sample_70-1-2.html" name="left">
    <frame src="sample_70-1-3.html" name="right">
  </frameset>
      <noframes>
      <body>
      <p>申し訳ありません、このページはフレームになっております。</p>
      <p>ここではフレームのサンプルを表現しています。元のページに戻ります。</p>
      <p><a href="../review_070.html">フレームの作成</a></p>
      </body>
  </noframes>
</frameset>

</html>

TopPage