Solution:
frames.html
<html>
<frameset rows="30%,*">
<frame src="header.html" name="f1">
<frameset rows="30%,70%" cols="50%,50%">
<frame src="link.html" name="f2">
<frame src="pune.html" name="f3">
<frameset cols="30%,30%">
<frame src="b.html" name="f4">
<frame src="2.html" name="f5">
</frameset>
<frame src="3.html" name="f6">
</frameset>
</frameset>
</html>
header.html
<html>
<body>
<b>First Frame :</b><br>
Your Name and address</BODY>
</HTML>
link.html
<html>
<body>
<b>Second Frame :</b><br>
Bulleted list of favourite colours
</body>
</html>
pune.html
<html>
<body>
<b>Third Frame :</b><br>
Numbered List of Cities
</body>
</html>
b.html
<html>
<body>
<b>Fourth Frame:</b><br>
Scrolling Message
</body>
</html>
2.html
<html>
<body>
<b>Fifth Frame:</b><br>
Blinking Reminders
</body>
</html>
3.html
<html>
<body>
<b>Sixth Frame:</b><br>
Name of Countries
</body>
</html>
0 Comments