<noframes>
is an HTML element which is used to supporting browsers which are not able to support <frame>
elements or configured to do so.
You can use any HTML element inside of <noframes>
which are expected to be seen inside of <body>
element, except <frameset>
and <frame>
elements.
Like all other HTML elements, this element supports the global attributes.
<frameset cols="50%,50%"> <frame src="https://developer.mozilla.org/en/HTML/Element/frameset" /> <frame src="https://developer.mozilla.org/en/HTML/Element/frame" /> <noframes><p>It seems your browser does not support frames or configured to does not so.</p></noframes> </frameset>
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/noframes