0% found this document useful (0 votes)
61 views8 pages

Develop Static Pages (Using Only HTML) of An Online Book Store - The The Following Pages

The document outlines plans to develop static HTML pages for an online bookstore website resembling Amazon.com. The website will include four key pages: a home page with links to registration and login, a registration page to collect user information, a login page for existing users, and a books catalog page with categories. Each page is drafted in HTML code with input fields, buttons, and basic formatting to create the planned pages.

Uploaded by

sunnynnus
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
61 views8 pages

Develop Static Pages (Using Only HTML) of An Online Book Store - The The Following Pages

The document outlines plans to develop static HTML pages for an online bookstore website resembling Amazon.com. The website will include four key pages: a home page with links to registration and login, a registration page to collect user information, a login page for existing users, and a books catalog page with categories. Each page is drafted in HTML code with input fields, buttons, and basic formatting to create the planned pages.

Uploaded by

sunnynnus
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 8

AIM:

1. Develop static pages (using Only HTML) of an online Book store.The


pages should resemble:www.amazon.com.The website should consists
the following pages.
•Home page
•Registration
•User Login
•Books catalog

PROCEDURE:

Main page:

<html>
<head>
<title>home page</title>
</head>
<body>
<center><b><h1>welcome to amazon.com</h1></b><br><br>
<form method="post"action="login.html">
<input type="submit"value="click">registration user login hear
</center>
</body>
</html>
Login page:

<html>
<head>
<title>login page</title>
</head>
<body>
<center>
<form method="post" action="login.html">
<p><strong>name:</strong>
<input type="text" name="username" size="25">
</p>
<p><strong>password</strong>
<input name="pass" type="password" size="6"></p>
<p><strong>male</strong>
<input type="radio" value="male"<hacked>&nbsp&nbsp</p>
<p><strong>female</strong>
<option><input type="radio" value="female"<hacked>&nbsp;</p>
<input type="submit" value="submit">&nbsp&nbps
<input type="reset" value="reset">
<a href="registration.html">new users register hear </a>
</form>
</center>
</body>
</html>
Registration:

<html>
<head>
<title>registration</title>
</head>
<body>
<center>
<form method="post" action="login.html">
<p><strong>name:</strong>
<input type="text" name="username" size="25">
</p>
<p><strong>password</strong>
<input name="pass" type="password" size="6"></p>
<p><strong>male</strong>
<input type="radio" value="male"<hacked>&nbsp&nbsp</p>
<p><strong>female</strong>
<input type="radio" value="female" </p>
<p><strong>address:</strong>
<textarea name="address" row="6" cols="20">
</textarea>
</p>
<p><strong>mobile no:</strong>
<input type="text" name="phno" size="10">
</p><br><br>
<input type="submit" value="submit">
<input type="reset" value="reset">
</form>
</center>
</body>
</html>
Books Catalog:
<html>
<head>
<title>books catalog</title>
</head>
<body>
<center><h1><p>welcome to books catalog</p></h1>
<table border="1"width="25%"height="50%">
<tr>
<th>computers</th>
<th>electronics</th>
<th>biotech</th>
<th>mechanical</th>
</tr>
<tr>
<td>
</body>
</html>

You might also like