You will be creating a simple frameset which includes a document in one frame and commentary on that document in another - a setup in a variety of instructional situations. The emphasis in the workshop is on the tags used to create the frame structure, not the documents that go in each frame.
Start up your text editor (this will vary depending on which computer you are using).
Open the file myframes.html. To save you some typing, I have started the page for you and given it this name.
You are to substitute appropriate information for each instance of XXX you find in the following tags in myframes.html :
Examples of appropriate information are provided in the reference example below. Further information will be provided during the session.
<HTML> |
The typical things that go in any HTML document. The title you use for the frameset document is the one the user sees no matter what TITLE tags are in the pages in each frame. |
<FRAMESET ROWS="67%,33%"> |
The FRAMESET tag tells the browser to set up frames
according to the instructions you provide. |
<NOFRAMES> |
The NOFRAMES container tag is optional and is used only by browsers that don't support frames. I hope it's structure is self-evident to you. |
<FRAME name = "righttop"
src="http://web.uvic.ca/hrd/fleat3/index.html"> |
You need one FRAME tag for each number in the FRAMESET
tag - in our example, 2. |
</FRAMESET> |
This tag tells the browser that your frameset is finished. |
</HTML> |
This is the normal tag to end an HTML page. |
The FLEAT III home page goes in the top frame. It's URL is provided in the frameset document - you don't have to do anything more.
You will put the web page called myreview.html into the bottom frame. I have created that document. If you wish, use your text editor to add a line or two of your own text to myreview.html, then save it.
Start up Netscape if it is not already running.
Choose Open File from the File menu, and open the file myframes.html
You should see your browser window divided in two. The top half should be about twice as high as the bottom half. The FLEAT III page should appear in the top half and the text contained in the file myreview.html should appear in the bottom half.
Make a copy of myframes.html and try these in any order. After each change, look at your page in the browser to see what the effect is:
Remember how the "Web Pages that Suck" site had a table of contents as well as a document and commentary? In this activity you will recreate that kind of setup. You'll need to:
Open your Browser with the file empty.html and see what happens.