|
|
HTML <noframes> tag
Syntax
<noframes> - </noframes>
Definition and Usage
The NOFRAMES element contains HTML for browsers that do not support FRAMESET
elements.
Standard Attributes
| id, class, title, style, dir, lang, xml:lang |
For a full description, go to Standard
Attributes.
Example
| Source |
Output |
<html>
<frameset cols = "50%, 50%">
<noframes>
<body>Your browser does not support
frames!</body>
</noframes>
<frame src ="frame1.htm" />
<frame src ="frame2.htm" />
</frameset>
</html> |
N/A
|
|
|