Last Updated on April 26, 2023 by Roshan Parihar
HTML noframes tag is used to show message when browser does not support frames.
Syntax
1 |
<noframes>Enter noframes text here</noframes> |
1 2 3 4 5 6 |
<frameset cols="25%,*,25%"> <frame src="frame_a.htm"> <frame src="frame_b.htm"> <frame src="frame_c.htm"> <noframes>Your browser does not support frames</noframes> </frameset> |
Output