CONTENT
<html>
<head><title>content</title></head>
<base target="_top">
<body bgcolor="#ffffff">

</body>
</html>

Shown below is the <frameset> for Template 1.

<html>
<head><title>Frame Template</title></head>
<frameset rows ="70,*,30">
<frame src="/templates/header.html" marginwidth="0" marginheight="0"
scrolling="no" noresize name="header">
<frameset cols="190,*">
<frame src="/templates/acategory.html" marginwidth="0" marginheight="0"
scrolling="no" noresize name="acategory">
<frame src="content.html" scrolling="auto" name="content">
</frameset>
<frame src="footer.html" marginwidth="0" marginheight="0"
scrolling="no" noresize name="footer">
</frameset>
</html>
COMMENTS

Text color has been used to indicate the <frame> htmls associated with the
<frameset > html. Red text is used to indicate the relationship of "name" and "target". For the purposes of this tutorial, I named all frames, but it is only
necessary to name a frame if it's to be the target of another.

Hint: Remember that you can 'drag-highlight-copy' and then 'paste' and 'save'
the html code in each of these frames as an ASCII file with the '.html' suffix.
Do the same for the <frameset> and label it "template1.html". If you save the
framset and the frames (4 total) in the same file, clicking and releasing 'open file'
from the 'file menu' will allow you to select 'template1.html' and see the frame
page basically as it appears here. Add your own text and graphics between the
'body' tags to create your page.


  Return to Tutorial