To create a two-frame HTML frameset
Microsoft HTML Help
To create a two-frame HTML frameset
- On the File menu, click New, and then click HTML File.
- Enter a title for this file, which is the file that controls your frameset.
- Within the
<BODY>
start and end tags, type:
<Frameset cols="40%,*">
<Frame name="left" src="left.htm">
<Frame name="right" src="right.htm">
</Frameset>
- Delete the
<BODY>
start and end tags from the file. Your frameset will not work if the file that controls the frameset uses them.
- Save the file as frames.htm.