<noframe> HTML Tag

In this article we will discuss about how to use noframe Tag in HTML.
  • 1789

The HTML noframes tag is used for specifying alternative content for browsers that don't support frames.

HTML Code:

<html>

<frameset cols="50%, *">

  <frame src="" />

  <frame src="" />

  <noframes>

  <body>Your browser doesn't support frames.

  Therefore, this is the noframe version of the site.</body>

  </noframes>

</frameset>

</html>

Output:

 myfrmee.jpg

Ask Your Question 
 
Got a programming related question? You may want to post your question here
 
Programming Answers here
© 2020 DotNetHeaven. All rights reserved.