0% found this document useful (0 votes)
87 views15 pages

Lab Manual

The document contains the code for an online book store website. It includes multiple HTML pages with links that allow navigating between a home page, login page, registration page, cart page, and pages displaying branches and a book image. The frames divide the browser window into sections for navigation links and content displays.

Uploaded by

samyukthabaswa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
87 views15 pages

Lab Manual

The document contains the code for an online book store website. It includes multiple HTML pages with links that allow navigating between a home page, login page, registration page, cart page, and pages displaying branches and a book image. The frames divide the browser window into sections for navigation links and content displays.

Uploaded by

samyukthabaswa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 15

home.

html

<html>

<font size="6">

<center>

<body bgcolor="A9D1AC">

<a href="name.html" target="f3"> HOME</a>

</body>

</center>

</font>

</html>

name.html

<html>

<body bgcolor="pink">

<p align="center">SAMYUKTHA</p>

</html>

login.html

<html>

<font size="6">

<center>

<body bgcolor="#C59EA3">

<a href="form1.html" target="f3">LOGIN</a>

</body>

</center>

</font>

</html>
form1.html

<html>

<body bgcolor="grey" align="center">

<center><form>

<p>USERNAME<input type="text" name="x"></p><br>

PASSWORD<input type="password" name="p"><br>

<input type="submit" name="s" value="submit">

<input type="reset" name="s" value="reset">

</body>

</form>

</center>

</html>

register.html

<html>

<font size="6">

<center>

<body align="center" bgcolor="#53BBCD">

<a href="form2.html" target="f3"> REGISTER</a>

</body>

</center>

</font>

</html>

form2.html

<html>

<body bgcolor="turquoise" align="center">

<center>

<form>
NAME<input type="text" name="t"><br><br>

DOB<input type="date" name="d"><br><br>

GENDER<input type="radio" name="c">male

<input type="radio" name="c1">female<br><br>

LANGUAGES<input type="checkbox" name="l1" multiple>english

<input type="checkbox" name="l1" multiple>telugu

<input type="checkbox" name="l1" multiple>hindi<br><br>

username<input type="text" name="x1"><br><br>

password<input type="password" name="p1"><br><br>

<input type="submit" name="s2" value="submit">

<input type="reset" name="s3" value="reset">

</body>

</form>

</center>

</html>

cart.html:

<html>

<font size="6">

<center>

<body bgcolor="#EDBB3C">

<a href="table.html" target="f3"> CART</a>

</body>

</center>

</font>

</html>
branch.html:

<html>

<font size="6">

<center>

<body bgcolor="lightblue">

<a href>CSE</a><br><br><br>

<a href>ECE</a><br><br><br>

<a href>EEE</a><br><br><br>

<a href>IT</a><br><br><br>

</body>

</center>

</font>

</html>
x.html:

<html>

<body bgcolor="#999966">

<img src="C:\Users\samyuktha\Desktop\bookimg.jpg" height="150" width="450"


align="center"></img>

</html>

y.html:

<html>

<body bgcolor="chocolate">

<br>

<br>

<center><font size="8"> ONLINE BOOK STORE</font></center>

</body>

</html>
t.html:

<html>

<body bgcolor="#999999">

<table border="2" height="500" width="1000" align="center">

<tr>

<td>BOOK NAME</td>

<td>PRICE</td>

<td>QUANTITY</td>

<td>AMOUNT</td>

</tr>

<tr>

<td>WT</td>

<td>360</td>

<td>1</td>

<td>360</td>

</tr>

<tr>

<td>AI</td>

<td>470</td>

<td>1</td>

<td>470</td>

</tr>

<tr>

<b><td colspan="4" align="right">Total=830/-</td></b>

</tr>

</table>

</body>

</html>
OUTPUT:

After clicking on home:


After clicking on login:

After clicking on register:


After clicking on cart:
AIM:

Program code:

Book.html :

<html>
<frameset rows="20%,20%,*">
<frameset cols="25%,*">
<frame src="x.html">
<frame src="y.html">
</frameset>
<frameset cols="25%,25%,25%,*">
<frame src="home.html">
<frame src="login.html">
<frame src="register.html">
<frame src="cart.html">
</frameset>
<frameset cols="25%,*">
<frame src="branch.html">
<frame name="f3" align="center">
</frameset>
</frameset>

You might also like