Noframes
 
End Tag: Required
Support Key: 2 | 3 | 3.2 | IE3A1 | M3B2 | N2
What is it?
Attributes
Tag Example
Parent/Content Model
Tips & Tricks
Browser Peculiarities
= Index DOT Html by Brian Wilson [bloo@blooberry.com] =
Main Index | Top Of Tree | Tag Index | Tag History

What is it?
This tag is part of the FRAME syntax that allows a regular HTML BODY structure to be nested in the FRAMESET structure. To older browsers that do not support the FRAMESET syntax, it appears that the document only contains the usual <head> and <body> structure [standard HTML behavior is to ignore tags that are not understood.] Frames capable browsers will ignore NOFRAMES content.
Attributes
This tag accepts no attributes.

Example
<html>
<head>
    <title>Frames Example</title>
</head>
<frameset ROWS="20,25%,*">
    <frame SRC="frame1.html" NAME="frame1">
    <frame SRC="frame2.html" NAME="frame2">
    <frameset COLS="30%,*">
         <frame SRC="frame3.html" NAME="frame3">
         <frame SRC="frame4.html" NAME="frame4">
    </frameset>
<noframes>
    <body>
        This text will appear only if the browser does not support frames.
    <body>
</noframes>
</frameset>
</html>
Parent Model
<frameset>
Content Model
<body>

Tips & Tricks Browser Peculiarities
Boring Copyright Stuff...