Practical – 14
Design a web page using Frames and Frameset for your college containing a
description of the courses, departments, faculties , library etc , also use links ,
list tags, etc..
Prac_14.html
<html>
<head>
<title>Practical-14</title>
</head>
<frameset rows="10%,90%">
<frameset cols="20%,16%,16%,16%,16%,16%">
<frame src="image_1.html">
<frame src="home.html">
<frame src="department.html">
<frame src="courses.html">
<frame src="faculties.html">
<frame src="library.html">
</frameset>
<frameset cols="50%,50%">
<frameset rows="50%,50%">
<frame src="image_2.html">
<frame src="new1.html">
</frameset>
<frameset rows="60%,40%">
<frame src="new.html">
<frameset cols="50%,50%">
<frame src="img_4.jpg">
<frame src="img_5.jpg">
</frameset>
</frameset>
</frameset>
</frameset>
</html>
OutPut Practical – 14
home.html
<html>
<head>
<title>Home</title>
</head>
<body bgcolor="pink">
<a href="home_1.html" target="mid_col">
<center>
Home
</center>
</a>
</body>
</html>
OutPut Practical – 14(home.html)
home_1.html
<html>
<head>
<title>Home</title>
</head>
<font size="8" color="green">
<center>
Grow More Group Of Institution
</center>
</font>
<body background="img_2.jpg">
<a href="pra_14.html">
<input type="button" value="BACK"/>
</a>
</body>
</html>
OutPut Practical – 14(home_1.html)
Department.html
<html>
<head>
<title>Department</title>
</head>
<body bgcolor="pink">
<a href="aaa.html" target="mid_col">
<center>
DEPARTMENT
</center>
</a>
</body>
</html>
OutPut Practical – 14(department.html)
aaa.html
<html>
<body bgcolor="pink">
<font color="green" size="5">
<h1>
<center>
<b>
<u>
DEPARTMENT DETAILS
</u>
</b>
</center>
</h1>
<a href="pra_14.html">
<input type="button" value="BACK"/>
</a>
<ul>
<li><a href="ccc.html" target="mid_col">B.C.A</a></li>
<li><a href="bbb.html" target="mid_col">M.Sc(C.A &
I.T)</a></li>
<li><a href="ddd.html" target="mid_col">P.G.D.C.A</a></li>
</ul>
</font>
</body>
</html>
OutPut Practical – 14(aaa.html)
courses.html
<html>
<head>
<title>Courses</title>
</head>
<body bgcolor="pink">
<a href="bbb.html" target="mid_col">
<center>
COURSES
</center>
</a>
</body>
</html>
OutPut Practical – 14(courses.html)
bbb.html
<html>
<body bgcolor="pink">
<font size="5" color="green">
<h1>
<center>
<b>
<u>
COURSES DETAILS
</u>
</b>
</center>
</h1>
</font>
<a href="aaa.html">
<input type="button" value="BACK"/>
</a>
<p>SEM-1</p>
<ul>
<li><a href="c_2.html" target="c_2">C</a></li>
<li><a href="iwd.html" target="iwd">IWD</a></li>
<li><a href="sad_1.html" target="sad_1">SAD</a></li>
<li><a href="dtp.html" target="dtp">DTP</a></li>
</ul>
</body>
</html>
OutPut Practical – 14(bbb.html)
html.html
<html>
<head>
<title>
About HTML
</title>
</head>
<center>
<font color="green" size="5">
<b>
<u>
About HTML
</u>
</b>
</font>
</center>
<hr size="5" color="darkgreen">
<body bgcolor="lightgreen">
<h1>HTML Is...</h1>
<font color="green" size="5">
Hypertext Markup Language (HTML) is the standard
markup language for creating web pages and web
applications. With Cascading Style Sheets (CSS) and JavaScript it forms a triad of cornerstone
technologies for the World Wide Web.[3] Web browsers receive HTML documents from a web
server or
from local storage and render them into multimedia web pages. HTML describes the structure of
a web
\page semantically and originally included cues for the appearance of the document.
</font>
</body>
</html>
OutPut Practical – 14(html.html)
faculties.html
<html>
<head>
<title>Faculties</title>
</head>
<body bgcolor="pink">
<a href="faa.html" target="mid_col">
<center>
FACULTIES
</center>
</a>
</body>
</html>
OutPut Practical – 14(faculties.html)
faa.html
<html>
<body bgcolor="pink">
<font color="green" size="5">
<h1>
<center>
<b>
<u>
FACULTY DETAILS
</u>
</b>
</center>
</h1>
<a href="pra_14.html">
<input type="button" value="BACK"/>
</a>
<ul>
<li><a href="bca_1.html" target="mid_col">B.C.A</a></li>
<li><a href="mscit_1.html" target="mid_col">M.Sc(C.A &
I.T)</a></li>
<li><a href="pgdca_1.html"
target="mid_col">P.G.D.C.A</a></li>
</ul>
</font>
</body>
</html>
OutPut Practical – 14(faa.html)
pgdca_1.html
<html>
<head>
<title>
P.G.D.C.A Faculty
</title>
</head>
<font color="green" size="5">
<h1>
<center>
<b>
<u>
FACULTY DETAILS
</u>
</b>
</center>
</h1>
<a href="faa.html">
<input type="button" value="BACK"/>
</a>
<body bgcolor="pink">
<table border="1">
<tr align="left">
<th>PATEL ANANDBHAI</th>
<th>PATEL RONAKBHAI</th>
<th>PATEL AASHISHBHAI</th>
<th>PATEL YESHBHAI</th>
</tr>
<tr align="left">
<td><img src="1494817333avatar5.jpg" /></td>
<td><img src="1494817333avatar5.jpg" /></td>
<td><img src="1494817333avatar5.jpg" /></td>
<td><img src="1494817333avatar5.jpg" /></td>
</tr>
</table>
</body>
</html>
OutPut Practical – 14(pgdca_1.html)
library.html
<html>
<head>
<title>Library</title>
</head>
<body bgcolor="pink">
<a href="library_1.html" target="mid_col">
<center>
LIBRARY
</center>
</a>
</body>
</html>
OutPut Practical – 14(library.html)
library_1.html
<html>
<head>
<title>Library</title>
</head>
<body bgcolor="pink" background="img_8.jpg">
<font color="green" size="8">
<b>
<u>
<center>
GROW MORE GROUP OF INSTITUTION
LIBRARY
</center>
</u>
</b>
</font>
<a href="pra_14.html">
<input type="button" value="BACK"/>
</a>
</body>
</html>
OutPut Practical – 14(library_1.html)