9/21/21

WEB TECHNOLOGIES LAB EXERCISE 1

download images before writeing the programs

https://drive.google.com/file/d/1-Yoi76bimKVcyvrTD7IawMIKpp_ApGWf/view?usp=sharing

please place images in current folder

 MAIN.HTML

<html>

<head>

<title>Home page</title>

</head>

<frameset rows="50,150">

<frame src="TOP.HTML" name="top" scrolling="no">

<frameset cols="30,100">

<frame src="LEFT.HTML" name="left">

<frame src="RIGHT.HTML" name="right">

</frameset>

</frameset>

</html>


TOP.HTML

<html>

<head>

<title>Head Page</title>

</head>

<body>

<font face="Arial Black" size="3">

<table border="1" width="100%">

<tr>

<td align="center"><img src="CRR.png" width="100" height="100"/></td>

<td colspan="5" align="center" > <h2>SIR C R REDDY COLLEGE OF ENGINEERING<br />       ELURU </h2></td>

</tr>

<tr>

<td align="center"><a href="RIGHT.html" target="right">HOME</a></td>

<td align="center"><a href="LOGIN.html" target="right">LOGIN</a></td>

<td align="center"><a href="REGISTRATION.html" target="right">REGISTRATION</a></td>

<td align="center"><a href="CATALOGUE.html" target="right">CATALOGUE</a></td>

<td align="center"><a href="CART.html" target="right">CART</a></td>

</tr>

</table>

</font>

</body>

</html>


LEFT.HTML

<html>
<head>
<title>Departments Page</title>
</head>
<body>
<font face="Arial Black" size="4">
<table align="center" height="100%">
<tr>
<td><a href="CSE.html" target="right">CSE</a></td>
</tr>
<tr>
<td><a href="IT.html" target="right">IT</a></td>
</tr>
<tr>
<td><a href="ECE.html" target="right">ECE</a></td>
</tr>
<tr>
<td><a href="EEE.html" target="right">EEE</a></td>
</tr>
</table>
</font>
</body>
</html>

RIGHT.HTML

<html>
<head>
<title> Description page </title>
</head>
<body>
<font face="arial" size="5" color="green">
<left>
<p>Sir C.R.Reddy College of Engineering is the first Engineering College in Andhra Pradesh sanctioned and recognized by All India Council for Technical Education (AICTE). This College is permanently affiliated to JNTUK from the Academic Year 2021-22.</p>
<p>Since its inception in 1989, Sir C.R.Reddy College of Engineering has been a premier institute for quality engineering education in Andhra Pradesh under the stewardship of its broad minded and magnanimous management. The last two and a half decades has seen the Institute fulfilling its motto of 'QUALITY SERVICE & VALUE BASED EDUCATION' to the student community.</p>
<p>Major IT companies like TCS, WIPRO, INFOSYS, COGNIZANT, TECH MAHINDRA and many more hire students regularly from Sir C R Reddy College of Engineering.</p>
</left>
</font>
</body>
</html>

CSE.HTML
<html>
<head>
<title> CSE </title>
</head>
<body>
<table border="1" width="100%">
<tr>
<td><img src="WEBTECH.jpg" width=100 height=100/></td>
<td> Book: WT <br> Author: pankaj sharma <br> Publication:S K Kataria and Sons</td>
<td> 465 </td>
<td><input type="button" value="Add to cart"/></td>
</tr>
</table>
</body>
</html>

IT.HTML
<html>
<head>
<title> IT</title>
</head>
<body>
<table border="1" width="100%">
<tr>
<td><img src="AI.jpg" width=100 height=100/></td>
<td> Book: AI <br> Author: Chandra S.S.V <br> Publication:PHI Learning</td>
<td>472</td>
<td><input type="button" value="Add to cart"/></td>
</tr>
</table>
</body>
</html>

ECE.HTML

<html>
<head>
<title> ECE</title>
</head>
<body>
<table border="1" width="100%">
<tr>
<td><img src="PDC.jpg" width=100 height=100/></td>
<td> Book: PDC <br> Author: A.Anand Kumar <br> Publication:PHI</td>
<td>450</td>
<td><input type="button" value="Add to cart"/></td>
</tr>
</table>
</body>
</html>

EEE.HTML

<html>
<head>
<title> EEE</title>
</head>
<body>
<table border="1" width="100%">
<tr>
<td><img src="AC.jpg" width=100 height=100/></td>
<td> Book: AC <br> Author: Sanjay Sharma <br> Publication: Katson</td>
<td>300</td>
<td><input type="button" value="Add to cart"/></td>
</tr>
</table>
</body>
</html>


CART.HTML
<html>
<head>
<title> Cart page</title>
</head>
<body>
<center>
<table border= "1" width="100%">
<tr>
<th>Book Name </th>
<th>Price </th>
<th>Quantity </th>
<th>Amount </th>
</tr>
<tr>
<td align="center">WT </td>
<td align="center">465</td>
<td align="center">02 </td>
<td align="center">930</td>
</tr>
<tr>
<td align="center">AI</td>
<td align="center">472</td>
<td align="center">02 </td>
<td align="center">944</td>
</tr>
<tr>
<td align="center">PDC</td>
<td align="center">450</td>
<td align="center">02 </td>
<td align="center">900</td>
</tr>
<tr>
<td align="center">AC</td>
<td align="center">300</td>
<td align="center">02 </td>
<td align="center">600</td>
</tr>
<tr>
<td></td><td></td><th>Total Amount</th>
<td align="center">3374</td>
</tr>
</table></center>
</body>
</html>



No comments:

Blog Archive