Thursday 21 January 2016

little complex frame....



Main Program(frame.html)

<html>
<head>
<title>frames</title>
</head>
<frameset cols="25%,*">
<frame name="font-style" src="menu1.html"/>
<frame name="friends" src="content1.html"/>
</frameset>
</html>

OUTPUT( frame.html ):







Sub program 1(menu1.html)
<html>
<head>
<link target="content1.html"/>
<title>menu</title>
</head>
<body>
<ul>
<li>
<p style="color:red"
font-family:"arial">
<a href="inpatient.html" target="inpatient" >inpatient</a>
</p>
</li>
<li>
<p style="color:blue"
font-family:"arial">
<a href="outpatient.html" target="outpatient">outpatient</a></p>
</li>
</ul>
</body>
</html>

OUTPUT( menu1.html):


Sub program 2(content1.html)
<html>
<head>
<title>frames</title>
</head>
<frameset rows="25%,*">
<frame name="inpatient" />
<frame name="outpatient" />
</frameset>
</html>
OUTPUT( content1.html):

Sub program 1 of menu1.html(inpatient.html)
<html>
<head>
<title>menu</title>
</head>
<body>
<p style="color:red"
font-family:"arial">
<dl>
<dt>Inpatient</dt>
<dd style="color:green">
we provide comfort room
</dd>
</dl>
</p>
</body>
</html>
OUTPUT( inpatient.html):


Sub program 2 of menu1.html(outpatient.html)


<html>
<head>
<title>menu</title>
</head>
<body>
<p style="color:red"
font-family:"arial">
<dl>
<dt>outpatient</dt>
<dd style="color:green">
we provide good transport facilitys
</dd>
</dl>
</p>
</body>
</html>

OUTPUT( inpatient.html):

No comments:

Post a Comment