Thursday 21 January 2016

Simple Frame in html ...



Main Program(frame.html)

<html>
<head>
<title>frames</title>
</head>
<frameset cols="50%,*">
<frame name="font-style" src="fonr-style.html"/>
<frame name="friends" src="friendsssss.html"/>
</frameset>
</html>

Sub program 1(fonr-style.html)
<html>
<head>
<title>front-style</title>
</head>
<body>
<p>
<b> i am bold style</b>
<br>
<i> i am italic style</i>
<br>
<u> i am underline style</u>
<br>
</p>
</body>
</html>

Sub program 2(friendsssss.html)
<html>
<head>
<title>friends</title>
</head>
<body>
<ul>
<li>sri</li>
<li>ram</li>
<li>chandra</li>
<li>chari</li>
<li>kamlesh</li>
</ul>
</body>
</html>

OUTPUT:

No comments:

Post a Comment