Temp
Temp
WEEK-1
Design the following static web pages required for an online book store web site.
1) HOME PAGE:
Top frame: Logo and the college name and links to Home page, Login page, Registration page,
Catalogue page and Cart page (the description of these pages will be given below).
Left frame : At least four links for navigation, which will display the catalogue of respective links.
For e.g.: When you click the link “CSE” the catalogue for CSE Books should be displayed in the Right
frame.
Right frame: The pages to the links in the left frame must be loaded here. Initially this page contains
description of the web site.
2) LOGIN PAGE:
ECM-A 2022-2023
WT lab 20311A1901
3) CATOLOGUE PAGE:
The catalogue page should contain the details of all the books available in the web site in a table.
ECM-A 2022-2023
WT lab 20311A1901
Aim: Design the following static web pages required for online book store.
1. Home page:- the static home page must contains three pages.
2. Top frame:- logo and college name and links to homepage, login page, registration
Page,catalogue page and cart page
3. Left frame:- at least four links for navigation which will display the cata ogue of
Respectivelinks
4. Right frame:- the pages to links in the left frame must be loaded he e initia y it Contains
thedescription of the website
SOURCE CODE:-
bookstore.html
<frameset rows="18%,*">
<frameset cols="15%,*">
</frameset>
</frameset>
topframe.html
<html>
<head>
</head>
<body bgcolor=green>
</tr>
</table>
ECM-A 2022-2023
WT lab 20311A1901
<tr>
<th><a href="rightframe.html"
target="rframe">Home</a></th><th><a href="login.html"
target="rframe">Login</a></th><th><a href="register.html"
target="rframe">Register</a></
th><th><ahref="catalogue.Html"
target="rframe">Catalogue</a></th><th><ahref="cart.html"
target="rframe">Cart</a></th>
</tr>
</table>
</body></html>
leftframe.html
<html>
<head>
</head>
<body bgcolor=#ffffcc>
<center>
<h4><a href="cse.html"
target="rframe">CSE</a></h4><h4><ahref="ece.ht
ml"
target="rframe">ECE</a></h4><h4><ahref="eee.ht
ml"
target="rframe">EEE</a></
h4><h4><ahref="it.html"
target="rframe">IT</a></h4>
</center>
</body>
</html>
ECM-A 2022-2023
WT lab 20311A1901
rightframe.html
<html>
<head>
</head>
<body bgcolor="pink">
</body></html>
login.html
<html>
<head>
</head>
<body bgcolor="pink">
<center>
<form>
</b>
</form>
</center>
</body>
</html>
ECM-A 2022-2023
WT lab 20311A1901
catalogue.html
<html>
<head></head>
<body bgcolor="yellow">
<form>
<tr>
</tr>
<tr>
</tr>
</table>
</form>
</body>
</html>
ECM-A 2022-2023
WT lab 20311A1901
Result:-
Week-2:
4) CART PAGE:
5) REGISTRATION PAGE:
1) Name (Text field) 2) Password (password field) 3) E-mail id (text field) 4) Phone number (text field)
5) Sex (radio button) 6) Date of birth (3 select boxes) 7) Languages known (check boxes – English, Telugu,
Hindi, Tamil) 8) Address (text area)
Aim: Design the following static web pages required for online book store.
1. Home page: - the static home page must contains three pages
2. Top frame: - logo and college name and links to homepage, login page,
registration Page,catalogue page and cart page
3. Left frame: - at least four links for navigation which will display the catalogue of
Respective links
4. Right frame: - the pages to links in the left frame must be loaded here initially
it Contains thedescription of the website
ECM-A 2022-2023
WT lab 20311A1901
6. Cart page
cart.html
<html>
<head></head>
<body>
<center>
<table width="100%">
<tr>
<th>Price </th>
<th>Quantity </th>
<th>Amount </th>
</tr>
<tr>
</tr>
<tr>
ECM-A 2022-2023
WT lab 20311A1901
</tr>
<tr>
<td align="center">$110.5</td>
</tr>
</table></center>
</body></html>
register.html
<html>
<head></head>
<body>
<form>
<center>
<hr witdh="50%">
<pre>
</pre></form>
</body></html>
ECM-A 2022-2023
WT lab 20311A1901
Result:-
ECM-A 2022-2023