<noframes>

Type

The NOFRAMES element defines a container for non frame-based rendering.


<noframes></noframes>

The content of the NOFRAMES element must contain a BODY element.

<noframes>
<body>
<p>Alternate content</p>
</body>
</noframes>

Example

The blue parts are displayed by the browsers that do not support frames.


<html>
<head>
<title>TAG index</title>
</head>

<frameset cols="100,*">
<frame src="example1.html">
<frame src="example2.html">

<noframes>
<body>

<h1>Alternate content</h1>
<p>Sorry the frames cannot be displayed by your browser.</p>
<p><a href="menu.html">Please go to the menu page</a></p>

</body>
</noframes>

</frameset>

</html>


<html>
<head>
<title>TAG index</title>
</head>

<frameset cols="100,*">
<frame src="example1.html">
<frame src="example2.html">

<noframes>
<body>

<h1>Alternate content</h1>
<ul>
<li><a href="html/index.html">HTML Tags</a></li>
<li><a href="css/index.html">CSS Properties</a></li>
<li><a href="about/index.html">About us</a></li>
<li><a href="contact/index.html">Contact us</a></li>
</ul>

</body>
</noframes>

</frameset>

</html>