<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"> <html> <head> <title>私のページ</title> </head> <frameset rows="50,*" border="1" framespacing="1"> <frame src="menu_yoko.html" name="head"> <frameset cols="200,*"> <frame src="menu.html"> <frame src="top.html" name="main"> </frameset> <noframes> <body> <a href="top.html" target="main">トップ</a><br><br> <a href="about.html" target="main">プロフィール</a><br><br> <a href="link.html" target="main">リンク集</a> </body> </noframes> </frameset> </html> |
3分割にする場合、少し難しいぞ。赤文字<frameset>でまず上下にわけて
上のフレームにメニューページを設定。
次に下のフレ-ムの中で青文字<frameset>を指定して、さらに左右にわけているのだ。
HTMLファイルを3枚使うことになるので、 menu_yoko.htmlで指定したページを
1ページ追加しないといけない。menu.htmlをコピーして、作ると楽に作れる。