Friday 16 December 2016

HTML FRAMES

mainframe.html
---------------------------
<html>
<head>
<title>Frames</title>
</head>

<frameset rows="20%,60%,20%">
    <frame name="f1" src="header.html">
    <frameset cols="30%,70%">
    <frame name="f2" src="menu.html">
    <frame name="f3" src="body.html">
</frameset>
    <frame name="f4" src="footer.html">
    </frameset>
</html>

menu.html
-----------------------------
<html>
<head>
<title>menu</title>
</head>
<body bgcolor="green">
<h1> contents</h1>
<ul>
<li><a href="about.html" target="f3">About</a></li>
<li><a href="courses.html" target="f3">Courses</a></li>
<li><a href="details.html" target="f3">Details</a></li>
</ul>
</body>
</html>

header.html
------------------------------
<html>
<head>
<title>Header</title>
</head>
<body bgcolor="red">
<h1 align="center">HEADER</H1>
</body>
</html>

footer.html
--------------------------------
<html>
<head>
<title>footer</title>
</head>
<body bgcolor="blue">
<h1 align="center">FOOTER</H1>
</body>
</html>

details.html
---------------------------------
<html>
<head>
<title>Details</title>
</head>
<body bgcolor="orange">
<p>
<H1>DETAILS PAGE</H1>
</p>
</body>
</html>

courses.html
---------------------------------
<html>
<head>
<title>Courses</title>
</head>
<body bgcolor="pink">
<p>
<br>COURSES OFFERED</br>
<h1>
<UL>
<LI>B.Sc</LI>
<LI>B.Com</LI>
<LI>B.B.M</LI>
</UL>
</h1>
</p>
</body>
</html>

body.html
------------------------------------
<html>
<head>
<title>body</title>
</head>
<body bgcolor="cyan">
<h1 align="center">BODY PART</H1>
</body>
</html>

about.html
------------------------------------
<html>
<head>
<title>About</title>
</head>
<body bgcolor="yellow">
<p>
<H1>ABOUT PAGE<H1>
</p>
</body>
</html>


No comments:

Post a Comment

Oracle Reserved Words

Oracle  Reserved Words The following words are reserved by Oracle. That is, they have a special meaning to Oracle and so cannot be redefi...