WWW

offer an alternative

Not everyone has a browser that supports frames, so whenever you use frames, you'll want to supply an alternative. After your closing </FRAMESET> tag, insert a <NOFRAMES> tag; inside this, you can nest <BODY> tags and a standard, no-frames HTML document:

</FRAMESET>
<NOFRAMES>
<BODY>
<H1>Welcome to my site!</H1>
<P>Home page text goes here...
</BODY>
</NOFRAMES>
</HTML>

Browsers that don't support frames ignore all the <FRAMESET>, <FRAME>, and <NOFRAMES> tags, jumping right to the <BODY> tag and its contents. Browsers that do support frames ignore everything that appears between the <NOFRAMES> tags.



Vogel Publishing s.r.o.