Aim:
To create a HTML pages with frames,
links, tables and other tags.
Algorithm:
- Create
a HTML page using <table> tag which displays the content.
- Create
another HTML page using <OL>,<UL> and <LI> tags which
displays the content in the list format.
- Create
another HTML page with frames which combines more than one HTML pages.
- Execute
the frame page, feel as dynamic page having more than one page in a single
page.
Program:
frame.html
<html>
<frameset cols="20%,80%">
<frame
src="page1.html">
<frameset
rows="35%,65%">
<frame
src="page2.html">
<frame
src="page3.html">
</frameset>
</frameset>
</html>
page1.html
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
<TABLE
BORDER="0" WIDTH="100%">
<TD>
<TR>
<P>This is a simple HTML
Page</p>
</TR>
</TD>
</TABLE>
</BODY>
</HTML>