|

For this frame example, you
need to make up 4 pages:
The Master Instruction Page, Page 1, and Page 2
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 rows= "64,*"
framespacing="0"
border="0"
frameborder="0">
<frame name="header"
scrolling="no"
noresize target="main"
src="page1.html">
<frame name="main"
target="_self" src="page2.html">
<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 2 other pages and call them
"page1.html" and "page2.html".
They will appear in the places shown above when finished. Put your regular page
content on them. UPLOAD ALL 3 PAGES TO YOUR SERVER.
Note: All
pages target to Page 2. Check out my targeting
tutorial if you want to change this!
|