On 16 Jul 98, Suzanne wrote:
> Is this the correct structure for the bottom of a frameset page? BBEdit is
> raising a fuss about it. Also, do you normally put anything in between the
> <noframes> tags like, "Sorry, this site requires a frames compatible
> browser?"
>
> <noframes>
> <body>
> </body></noframes>
> </html>
Well, it's not quite right no. <noframes> has to be enclosed within
<frameset>, which in turn must be enclosed within <html>
So a fully compliant frames/no frames page would look something like:
<html>
<head>
<title>whatever</title>
</head>
<frameset rows="*,*">
<frame src="one.html" name=one>
<frame src="two.html" name=two>
<noframes>
<body>
normal body stuff goes here
</body>
</noframes>
</frameset>
</html>
Browsers that don't know about frames will just ignore all the
frame-related tags and jump straight from </head> to <body>
(which means that, yes, it would be a good idea to have some
content there <g>); conversely, frame-aware browsers will know
to ignore anything contained within <noframes>.
-----------
Brent Eades, Almonte, Ontario
E-mail: [EMAIL PROTECTED]
[EMAIL PROTECTED]
Town of Almonte site: http://www.almonte.com/
Business site: http://www.federalweb.com
____________________________________________________________________
--------------------------------------------------------------------
Join The Web Consultants Association : Register on our web site Now
Web Consultants Web Site : http://just4u.com/webconsultants
If you lose the instructions All subscription/unsubscribing can be done
directly from our website for all our lists.
---------------------------------------------------------------------