The <noframes> tag is used to alert user in case frames is not supported.
<noframes> |
Yes | Yes | Yes | Yes | Yes |
The <noframes> tag is deprecated in HTML5.
<!DOCTYPE html>
<html>
<!--from w ww. ja v a 2s .c om-->
<frameset cols="25%,50%,25%">
<frame src="">
<frame src="">
<frame src="">
<noframes>Sorry, your browser does not handle frames!</noframes>
</frameset>
</html>