<noframes> and </noframes>

PURPOSE: To create a page with a no frame link for browsers that don't support frames.

Below is a basic html document. The referenced html tag is in RED. All tags must have a start and a end tag. Most end tags have a / before the tags name, however there are a few that are done differently. The tags that end differently will be noted and highlighted. The order of the start and end tags is also very important to proper display of your page in a web browser.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
<html>
<head>
<title>
Frames page
</title>
<frameset rows="40%,60%">
<frame src="pagec.html">
<frameset cols="50%,50%">
<frame src="pagea.html">
<frame src="pageb.html">
</frameset>
</frameset>
<noframes>
Your browser does not support frames. Click <a href="noframe.html">HERE</a> for a no frame version of this page.
</noframes>
</html>


© Copyright 2001,2002 Southern Twilight    All rights reserved.

Back To HTML Examples