Previous Example-|-Next Example-|-Return to Chapter Listing

Example 15.2:
Creating Frames with HTML


This is file 15-2a.htm



This is the entire contents of the 15-2.htm file that we used to create the frames: <HTML> <HEAD> <TITLE>Example 15.2</TITLE> </HEAD> <FRAMESET COLS="75%,25%"> <FRAME SRC="15-2a.htm"> <FRAMESET ROWS="50%,50%"> <FRAME SRC="15-2b.htm"> <FRAME SRC="15-2c.htm"> </FRAMESET> </FRAMESET> </HTML>
Previous Example-|-Next Example-|-Return to Chapter Listing