[新着] Webテンプレートを仮オープンしました
framesetタグで分割した画面内に、ページを読み込むためのタグです。このタグは、framesetタグに囲まれた部分で使用します。
<frame src="example.html">
■左右に分割した画面にページを表示する場合
<html>
<head>
<title>フレームサンプル</title>
</head>
<frameset cols="200,*">
<frame src="example_a.html">
<frame src="example_d.html">
<noframes>
<body>
<p>ここにフレーム未対応ブラウザ向けの内容</p>
</body>
</noframes>
</frameset>
</html>
▼これをブラウザで見ると次のように表示されます
■上下に分割した画面にページを表示する場合
<html>
<head>
<title>フレームサンプル</title>
</head>
<frameset rows="100,*">
<frame src="example_a.html">
<frame src="example_d.html">
<noframes>
<body>
<p>ここにフレーム未対応ブラウザ向けの内容</p>
</body>
</noframes>
</frameset>
</html>
▼これをブラウザで見ると次のように表示されます