Frames - Noframes
Some people's computers can't view frames. If the person can't view frames, you should provide an alternative route to find your information. You should incluse the "noframes" information.
Noframes is a tag you use to redirect your user to a frameless page. Here's where it goes:
- <html>
<head></head>
<frameset cols="20%,*">
<frame src="cool.html" name="contents">
<frame src="fuzzy.html" name="main">
</frameset>
<noframes>
The information inside these tags can only be seen on computers that don't show frames. Here is where you can put a link that will direct people to your frameless page.
</noframes>
</html>
It is recommended that you use the <noframes> tag whenever you use frames.