0% found this document useful (0 votes)
69 views

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

The document outlines a plan to develop static HTML pages for an online bookstore website. It describes creating four main pages: a home page, registration page, login page, and books catalog page. Each page is outlined with the basic HTML structure and some placeholder content. The home page would link to the registration and login pages. The registration and login pages would collect user information and allow users to submit or reset forms. The books catalog page would display a table with book categories.

Uploaded by

chirusagar
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
69 views

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

The document outlines a plan to develop static HTML pages for an online bookstore website. It describes creating four main pages: a home page, registration page, login page, and books catalog page. Each page is outlined with the basic HTML structure and some placeholder content. The home page would link to the registration and login pages. The registration and login pages would collect user information and allow users to submit or reset forms. The books catalog page would display a table with book categories.

Uploaded by

chirusagar
Copyright
© Attribution Non-Commercial (BY-NC)
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