HTML リファレンス ...Wikiモドキ

http://www.usamimi.info/~geko/arch_web/arch_html/tag_noframes.html

noframes要素

概要

フレーム用HTMLにおいて、フレームに対応していないブラウザ向けの代替テキストを記述する。通常のHTMLにおけるbody要素を記述する。

要素仕様
バージョン HTML4.01(F),XHTML1.0(F)
開始/終了タグ 必須/必須
要素種 ブロック
非推奨 NO
必須 --
内容となるもの body要素(移行型ではbody要素省略可能)

用例

画像はイメージ

noframes要素の用例

<!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>

サンプルページ

関連要素

作成:2008/11/30 / 最終更新:2008/11/30

HTML4.01版/ XHTML1.1版/ XML原本