親ソース
"f-sampl2.html"
<html>
<head>
<title>フレームサンプル2</title>
</head>
<frameset cols="25%,75%" frameborder=0 border=0 framespacing=0>
<frame name="frame1" src="menu1.html" scrolling="no">
<frame name="frame2" src="top1.html" scrolling="yes">
</frameset>
</html>
左のフレームのソース
"menu2.html"
<html>
<head>
<title>フレームサンプル2-1</title>
</head>
<body bgcolor="#003300" leftmargin=5 marginwidth=5 marginheight=5 topmargin=5 link=white vlink=pink>
<h1><font color=yellow>フレームサンプル1</font></h1>
<table cellpadding=0 cellspacing=0 border=0>
<tr valign=top>
<td>
<font size=4><a href="top2.html#src0" target="frame2">[親ソース]</a> </font><p>
<font size=4><a href="top2.html#src1" target="frame2">[左フレーム・ソース]</a> </font><p>
<font size=4><a href="top2.html#src2" target="frame2">[右フレーム・ソース]</a> </font>
</td>
</tr>
</table>
</body>
</html>
右(この)フレームのソース
"top2.html"
<html>
<head>
<title>フレームサンプル2-2</title>
</head>
<body bgcolor="#ffffff" link="#003300" vlink="#006600" alink="#009900" leftmargin=5 marginwidth=5 marginheight=5 topmargin=5>
<table cellpadding=0 cellspacing=0 border=0>
<tr>
<td>
<a name="src0"></a>
<font color=blue>親ソース</font><br>
<h4>"f-sampl2.html"</h4>
・・・・・・・・・・・
・・・・・中略・・・・
・・・・・・・・・・・
<hr>
<a name="src1"></a>
<font color=blue>左のフレームのソース</font><br>
<h4>"menu2.html"</h4>
・・・・・・・・・・・
・・・・・中略・・・・
・・・・・・・・・・・
<hr>
<a name="src2"></a>
<font color=blue>右(この)フレームのソース</font><br>
<h4>"top2.html"</h4>
・・・・・・・・・・・
・・・・・中略・・・・
・・・・・・・・・・・
</td>
</tr>
</table>
<hr>
</body>
</html>
|