|

For this frame example, you
need to make up 4 pages:
The Master Instruction Page, Page 1, Page 2, and Page 3
When published, the whole thing will look like this:

Here is the
code for the Master Instruction Page. Cut and paste
it EXACTLY onto a blank page:
<html>
<head>
<title> Your Page Title</title>
</head>
<frameset cols= "150,*">
<frame name="left"
scrolling="no"
noresize target="rtop"
src="page1.html">
<frameset rows="78%,*">
<frame name="rtop"
target="_self"
src="page2.html">
<frame name="rbottom"
target="rtop" src="page3.html">
</frameset>
<noframes>
<body>
<p>This
page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</html>
You can name
this page whatever you want. It will not be seen, but is the page that
links all the other pages together. PUT NOTHING ON IT OTHER THAN WHAT IS
WRITTEN ABOVE. It is also the address you would type in to view all your
pages put together. Make up 3 other pages and call them
"page1.html" "page2.html" and "page3.html".
They will appear in the places shown above when finished. Put your regular page
content on them. UPLOAD ALL 4 PAGES TO YOUR SERVER.
Note: All
pages target to Page 2. Check out my targeting
tutorial if you want to change this!
|