HTML Tag Reference - HTML tag <noframes>








The <noframes> tag is used to alert user in case frames is not supported.

Browser compatibility

<noframes> Yes Yes Yes Yes Yes

What's new in HTML5

The <noframes> tag is deprecated in HTML5.

Example

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

Click to view the demo