Static Webpage
Static Webpage
EX.NO:
DATE:
DESIGN STATIC WEB PAGE FOR ONLINE BOOK STORE
AIM:
To design static web pages for an online book store website.
ALGORITHM:
Step 1: Start the program.
Step 2: In home.html, define the frameset structure as outlined in the provided code.
Step 3: Insert an image in logo.html using the specified file path.
Step 4: Customize the title in title.html for the online bookshop.
Step 5: In branches.html, confirm correct links to book categories and use target attributes to
open content in the desired frame.
Step 6: In menu.html, ensure links open content in the "f32" frame and provide access to
different sections.
Step 7: Customize the content of homedes.html to describe the online bookshop.
Step 8: Review and adjust the login form in login.html as needed.
Step 9: Open home.html in a web browser, and it should display the website with the content
from the linked HTML files.
Step 10: Stop the program.
PROGRAM:
Home.html
<html>
<frameset rows="15%,9%,76%" bordercolor="pink">
<frameset cols="20%,80%" bordercolor="red">
<frame src="logo.html" scrolling="no">
<frame src="title.html">
</frameset>
211421205125
<table width="100%">
<tr>
<td><a href="homedes.html" target="f32"> Home</a></td>
<td> <a href="login.html" target="f32"> Login </a></td>
<td><a href="catalogue.html" target="f32">Catalogue</a></td>
<td><a href="registration.html" target="f32">Registration</a></td>
<td><a href="cart.html" target="f32">Cart</a></td>
</tr>
</table>
</html>
Homedes.html
<html>
<body>
<center><u>ONLINE BOOK SHOP </u></center>
<p> This website contains various books.</body></html>
Login.html
<html>
<head><title> Login Page</title>
</head>
<body>
<form name="login">
<center>
<h3><u>Login Page</u></h3> username:<input
type="text" name="uname"><br> password:<input
type="password" name="pwd"><br>
<input type="submit" value="Submit">
<input type="reset" value="reset">
</center></form>
</body></html>
211421205125
OUTPUT:
RESULT:
Thus the program for static web page for an online book store was executed and the
output has been verified successfully.