http://www.usamimi.info/~geko/arch_web/arch_html/tag_noframes.xhtml
フレーム用HTMLにおいて、フレームに対応していないブラウザ向けの代替テキストを記述する。通常のHTMLにおけるbody要素を記述する。
バージョン | HTML4.01(F),XHTML1.0(F) |
---|---|
開始/終了タグ | 必須/必須 |
要素種 | ブロック |
非推奨 | NO |
必須 | -- |
内容となるもの | body要素(移行型ではbody要素省略可能) |
画像はイメージ
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> <title>サンプル - frame,frameset,noframes要素</title> </head> <frameset rows="100,*"> <frame name="top" src="samp_frame-frameset-noframes2.html"> <frameset cols="20%,80%"> <frame name="menu" src="samp_frame-frameset-noframes3.html"> <frame name="right" src="samp_frame-frameset-noframes4.html"> </frameset> <noframes> <body> <ul> <li><a href="samp_frame-frameset-noframes2.html">上のフレーム</a></li> <li><a href="samp_frame-frameset-noframes3.html">左のフレーム</a></li> <li><a href="samp_frame-frameset-noframes4.html">右のフレーム</a></li> </ul> </body> </noframes> </frameset> </html>