POV-Ray : Newsgroups : povray.off-topic : How *annoying* is this? : Re: How *annoying* is this? Server Time
11 Oct 2024 01:24:21 EDT (-0400)
  Re: How *annoying* is this?  
From: Gail Shaw
Date: 18 Mar 2008 23:51:59
Message: <47e09bef@news.povray.org>
"St." <dot### [at] dotcom> wrote in message news:47e02cf2$1@news.povray.org...
>
>  Aha! Thanks Gail. Now I understand it a little more. (I know through my
own
> website code what a table is, I use them myself, but I wouldn't even know
> how to implement a 'frame' (which I thought was another name for a
table)).
> (Yeah, I suck BT).  :o/
>

Here's a frameset from an old website of mine. Creates 2 frames, one loading
the navigation page, one loading the main page.
What you may note is that there's no body element. A page that creates
frames doesn't have a body section.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>

<head>
 <title>The Gila Monster's Nest</title>
</head>

<frameset cols="133,*" frameborder="yes"  border="0" bordercolor="Black"
rows="*">
  <frame src="Navigation.html" name="Navigation" scrolling="NO">
   <frame src="Blank.html" name="Main" scrolling="NO">
</frameset>
<noframes>
No Frames? Main page <a href="Main.html">here</a>
</noframes>
</html>


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.