フレームページのサンプルとなるソースです。
テキストエディタで新規のテキストを開き、下のソースをコピー&ペーストしてhtmlファイルとして保存してください。
これがフレームの土台になります。 |
 |
<html>
<head>
<title>タイトル</title>
</head>
<frameset
cols="200,*">
<frame
name="a" src="
a.html">
<frame name="b" src="
b.html">
</frameset>
<noframes>
フレームの表示が出来ません。
</noframes>
</html> |
200,*を*,200にすれば、右側の大きさを固定したフレームページとなります。
テキストエディタで新規のテキストを開き、下のソースをコピー&ペーストしてhtmlファイルとして保存してください。
これがフレームの土台になります。 |
 |
<html>
<head>
<title>タイトル</title>
</head>
<frameset
rows="150,*">
<frame
name="a" src="a.html">
<frame name="b" src="b.html">
</frameset>
<noframes>
フレームの表示が出来ません。
</noframes>
</html> |
150,*を*,150にすれば、下側の大きさを固定したフレームページとなります。
テキストエディタで新規のテキストを開き、下のソースをコピー&ペーストしてhtmlファイルとして保存してください。
これがフレームの土台になります。 |
 |
<html>
<head>
<title>タイトル</title>
</head>
<frameset
cols="200,*,200">
<frame
name="a" src="a.html">
<frame name="b" src="b.html">
<frame name="c" src="c.html">
</frameset>
<noframes>
フレームの表示が出来ません。
</noframes>
</html> |
テキストエディタで新規のテキストを開き、下のソースをコピー&ペーストしてhtmlファイルとして保存してください。
これがフレームの土台になります。 |
 |
<html>
<head>
<title>タイトル</title>
</head>
<frameset
rows="100,*,100">
<frame
name="a" src="a.html">
<frame name="b" src="b.html">
<frame name="c" src="c.html">
</frameset>
<noframes>
フレームの表示が出来ません。
</noframes>
</html> |
テキストエディタで新規のテキストを開き、下のソースをコピー&ペーストしてhtmlファイルとして保存してください。
これがフレームの土台になります。 |
 |
<html>
<head>
<title>タイトル</title>
</head>
<frameset
rows="100,*">
<frame
name="a" src="a.html">
<frameset cols="200,*">
<frame
name="b" src="b.html">
<frame name="c" src="c.html">
</frameset>
<noframes>
フレームの表示が出来ません。
</noframes>
</html> |
テキストエディタで新規のテキストを開き、下のソースをコピー&ペーストしてhtmlファイルとして保存してください。
これがフレームの土台になります。 |
 |
<html>
<head>
<title>タイトル</title>
</head>
<frameset
rows="*,100">
<frameset
cols="*,200">
<frame name="a" src="a.html">
<frame name="b" src="b.html">
</frameset>
<frame name="c" src="c.html">
<noframes>
フレームの表示が出来ません。
</noframes>
</frameset>
</html> | |