HTM70
DESCRIPTION
OUTPUT
SOURCE CODE
DESCRIPTION
A simple demonstration of Frames
OUTPUT
A simple demonstration of Frames
SOURCE CODE
<HTML> <HEAD><TITLE>A simple demonstration of Frames</TITLE></HEAD>
<FRAMESET COLS = 50%, 50%>
<FRAME SRC = document1.html>
<FRAME SRC = document2.html>
</FRAMESET>
</HTML>
Here is the HTML code for document1.html:
<HTML>
<BODY>
<H1>Document One</H1>
This is document one, which uses normal text colors.
</BODY>
</HTML>
Here is the HTML code for document2.html:
<HTML>
<BODY BGCOLOR = black TEXT = white>
<H1>Document Two</H1>
This is document two, which has white text on a black background.
</BODY>
</HTML>