Thursday 25 April 2013

frameset


framec.html

<html>
<head>
<title>frames</title>
</head>
<body bgcolor=" #FFEBEB">

</body>
</html>

-------------------------------------

frameset.html

<html>
<head>
<title>Frames</title>
</head>
<frameset rows="15%,*"">
  <frame src="frame_a.html" name=""f1">

<frameset cols="25%,75%">
  <frame src="frame_b.html" name="f2">
  <frame src="frame_c.html" name="f3">
</frameset>
</frameset>
</html>

----------------------
frameb.html

<html>
<head>
<title>frames</title>
</head>
<body bgcolor=" #00FFFF">
<center>
<h2>Practicals Programs List<h2>
</center>
<a href="SEIT_timetable.html" target="f3">1.Time Table</a> <br>
<a href="resume.html" target="f3">2. Resume</a> <br>
<a href="form1.html" target="f3">3. Addmision</a> <br>
<a href="frameset.html" target="f3">4. Frameset</a> <br>
</body>
</html>
--------------------

framea.html

<html>
<head>
<title>frames</title>
</head>
<body bgcolor=" #FFCC66">
<center>
<h1>Internet Programing<h1>
<h2>Practicals<h2>
</center>
</body>
</html>

No comments:

Post a Comment