View Full Version : What's wrong with this picture?


Owlie42
02-23-2004, 01:39 AM
<HTML>
<HEAD>
<TITLE>A Basic Example of Frames</TITLE>
</HEAD>
<FRAMESET ROWS="420, *" COLS="500, *">
<FRAME SRC="C:\Documents and Settings\Owner\My Documents\New

Folder\kathryn\stuff\blog\layout\potc\pic.html" name="pic" frameborder=0

scrolling=no framespacing="0">
<FRAME SRC="C:\Documents and Settings\Owner\My Documents\New

Folder\kathryn\stuff\blog\layout\potc\right.html" name="right" frameborder=0

scrolling=no framespacing="0">
<FRAME SRC="C:\Documents and Settings\Owner\My Documents\New

Folder\kathryn\stuff\blog\layout\potc\left.html" name="lowerleft" frameborder=0

scrolling=no framespacing="0">
<FRAME SRC="C:\Documents and Settings\Owner\My Documents\New

Folder\kathryn\stuff\blog\layout\potc\frame.html" name="frame" frameborder=0

frame>
<NOFRAMES>

</NOFRAMES>
</FRAMESET>
</HTML>

kittycat
02-23-2004, 01:52 AM
I don't think you can have ROWS and COLS together, they need to be in separate frameset tags.
In the very last <frame> you just have the word 'frame' at the end, so either finish of the attribute or remove it.

So assuming you want the frames to be four squares...
<HTML>
<HEAD>
<TITLE>A Basic Example of Frames</TITLE>
</HEAD>
<FRAMESET rows="420,*">
<FRAMESET cols="500,*">
<FRAME name="pic" frameborder=0 scrolling=no framespacing="0">
<FRAME name="right" frameborder=0 scrolling=no framespacing="0">
</FRAMESET>
<FRAMESET cols="500,*">
<FRAME name="lowerleft" frameborder=0 scrolling=no framespacing="0">
<FRAME name="frame" frameborder=0 framespacing="0">
</FRAMESET>
</FRAMESET>
<NOFRAMES>
</NOFRAMES>
</HTML>

Owlie42
02-23-2004, 01:58 AM
oh, wait, nevermind. Got it to work. :lol: