Priyankar (Pgm5)
Priyankar (Pgm5)
29SCS124
Ex. No: 5
19/01/2011 FRAMES
Aim:
To insert vertical frames, horizontal frames and iframes in web pages.
Description:
FRAMES
The frames can be inserted in a webpage using the <frameset> tag. The following are the
attributes for this tag.
src is used to specify the page that has to be associated with a particular frame.
<noframes> are used to specify the actions that are to be performed if the browser
doesn’t support frameset.
Program:
<html>
<head><title>Frames</title></head>
<frameset rows="64,*,64">
<frame name="top" scrolling="no" noresize target="contents" src="page_1.htm">
<frameset cols="150,*">
<frame name="contents" target="main" src="page_2.htm">
<frame name="main" src="page_3.htm">
</frameset>
<frame name="bottom" scrolling="no" noresize target="contents" src="page_4.htm">
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</html>
page_1.htm
<html>
<title>Page 1</title>
<body>
<p align="center">
<font size="7">www.priyankarpaul.110mb.com</font> </p>
</body>
</html>
page_2.htm
<html>
<head>
<title>Page 2</title>
</head>
<body>
<p>Home</p>
<p>News</p>
<p>Contacts</p>
<p>More stuffs</p>
<p>Suggestions</p>
</body>
</html>
Priyankar Paul 3
29SCS124
page_3.htm
<html>
<head>
<title>Page 3</title>
</head>
<iframe src="page_5.htm" width="100%" width="200" height="300">
<p>Your browser does not support iframes.</p>
</iframe>
</html>
page_4.htm
<html>
<head>
<title>Page 4</title>
<base target="contents">
</head>
<body>
<p align="center"><a
href="http://www.google.co.in">Google</a>
<a href="http://www.yahoo.com">Yahoo</a>
<a href="http://www.wikipedia.org">Wikipedia</a>
<a href="http://www.facebook.com">Facebook</a>
<a href="http://www.gmail.com">Gmail</a>
<a href="http://www.hotmail.com">Hotmail</a>
<a href="http://www.orkut.com">Orkut</a>
<a href="http://www.espncricinfo.com">Cricket</a>
</p>
</body>
</html>
page_5.htm
<html>
<body>
<p align="center"><font size="7" color="#FF0000">HELLO!!</font></p>
<p align="center"><font size="7" color="#FF0000">WELCOME EVERYONE</font></p>
</body>
</html>
Priyankar Paul 4
29SCS124
Output:
Result:
Thus the HTML program to insert vertical frames, horizontal frames and iframes in web
pages was successfully executed and its output was verified.