Frames Code
9/19/2004 6:12:33 PM
Sample HTML on creating a framed Web page. This code is for a two framed page with the main body content on top and small frame on the bottom with no width for the frame border.
<frameset rows="*,95"> <frame name="main" src="/main/default.aspx" frameborder=no> <frame name="footer" frameborder=no scrolling="no" noresize target="main" src="ad.htm" marginwidth=0 marginheight=0> <noframes> <body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body> </noframes> </frameset>
|