Friday, 9 August 2013

HTML noframes Tag

Introduction:

The HTML noframes tag is used (in conjunction with the frameset tag) for specifying alternative content for browsers that don't support frames.

Example:
<html>
<head>
<title>HTML noframes Tag<title>
</head>
<frameset cols = "25%, *">
  <frame src ="http://gohilinfotech.blogspot.in/" />
  <frame src ="http://gohilinfotech.blogspot.in/" />
  <noframes>
  <body>Your browser doesn't support frames.
  Therefore, this is the noframe version of the site.</body>
  </noframes>
</frameset>
</html>

No comments:

Post a Comment