<noframe> HTML Tag
In this article we will discuss about how to use noframe Tag in HTML.
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:

Ask Your Question