You are on page 1of 52

A

MIS PROJECT
ON

CITY HOSPITAL
Submitted in partial fulfillment of the requirements
for the award of the Degree of
BACHELOR OF BUSINESS ADMINISTRATION

To

Guru Gobind Singh

Indraprastha University,
Delhi

Guide: Miss. SAKSHI


SUBMITTED BY: DHRUV GAHLOT
ENRL. No. : 04214201714

JAGANNATH INTERNATIONAL MANAGEMENT


SCHOOL
VASANT KUNJ
Batch (2014-2017)

ACKNOWLEDGEMENT
Perseverance, inspiration and motivation have always played a key role in success of any
venture. In the present world of competition and success understanding of theoretical and
practical working makes you aware about the real business; willingly I prepared this particular
project.
We hereby express my deep sense of gratitude to all the personalities involved directly and
indirectly in my project work.
We would also like to thank my faculty mentor MS. KANIKA TAKKARfor his valuable guidance.
He has always been a source of continuous support and inspiration.
With all the heartiest thanks, I hope my final project report will be a great success and a good
source of learning and information.

DHRUV GAHLOT
SAI PRIYA GUPTA
SHOBIT RAWAT
MARSHALL ROBIN

STUDENT DECLARATION
This is to certify that we have completed html project on CITY HOSPITAL done under the
guidance of MS. SAKSHI CHABRA in partial fulfilment of the requirement for the award of
Degree of Bachelor of Business Administration at JAGANNATH INTERNATIONAL
MANAGEMENT SCHOOL, VASANT KUNJ. This is an original piece of work & we have not
submitted it earlier elsewhere.

Date:

Signature:

Place:

Name

: DHRUV GAHLOT
SAI PRIYA GUPTA
SHOBIT RAWAT
MARSHALL ROBIN

CERTIFICATE
This is to certify that that the html project titled CITY HOSPITAL is an academic work
submitted in the partial fulfilment of the requirement for the award of the degree of Bachelor of
Business Administration of JAGANNATH INTERNATIONAL MANAGEMENT SCHOOL,
VASANT KUNJ under my guidance and direction.
To the best of my knowledge and belief the data and information presented by her in the project
has not been submitted earlier.

Signature

Name of faculty

:Ms. SAKSHI CHABBRA

S No

Topic

Introduction

System Requirement

Coding & Output

Testing

Implementation & post implementation

Bibliography

INDEX

Page No

Chapter: 1
INTRODUCTION

UNITED COLORS OF INDIA


The objective of this project is to create a website for UNITED COLORS OF INDIA which
is a global fashion brand, based in Delhi, India. It has a network of over 6,500 stores in 120
countries. The stores are managed by independent partners and generate a total turnover of over
2 billion dollars. The organization has various objectives which are as follows:
1. To create a shopping environment that caters to the apparel needs of the urban AfricanAmerican cowboy and cowgirl.
2. To earn 80% market share and become the number one ethnic western wear apparel store
in southwest Houston, TX and achieve name recognition in the local cowboy community.
3. To receive a 50% profit margin within the first year.
4. To have a customer base of 1,000 by the end of the first operating year.
5. To achieve a net profit of $75,000 by year two and $100,000 by year three.
In order to achieve the above mentioned objectives the organization wants to promote its stores
through Internet. They want that their products should be available to all irrespective of location
and other constraints.
They deal in three main categories of Clothing:
1) Man Collection
2) Woman Collection
3) Kids Collection
These are further classified into various categories such as

Summer collection

Autumn Collection

Winter Collection

Spring Collection

Customers will be able to enjoy shopping 24*7 online through organizations official website.
They can have easy accessibility to purchase clothes online through various modes of payment

Cash-on-delivery

Debit card

Credit card

One can easily check their status of order and delivery and organization also have a good and
efficient

return

policy.

If any customer faces problem the organization have customer care services and after sales
services too.

MANAGEMENT INFORMATION SYSTEM (MIS)


A management information system (MIS) is a system or process that provides information
needed to manage organizations effectively [1]. Management information systems are regarded to
be a subset of the overall internal controls procedures in a business, which cover the application
of people, documents, technologies, and procedures used by management accountants to solve
business problems such as costing a product, service or a business-wide strategy. Management
information systems are distinct from regular information systems in that they are used to
analyse other information systems applied in operational activities in the organization. [2]
Academically, the term is commonly used to refer to the group of information management
methods tied to the automation or support of human decision making, e.g. Decision Support
Systems, Expert systems, and Executive information systems.

HTML

HTML, which stands for Hyper Text Markup Language, is the predominant markup language
for web pages. A markup language is a set of markup tags, and HTML uses markup tags to
describe web pages.
HTML is written in the form of HTML elements consisting of "tags" surrounded by angle
brackets (like <html>) within the web page content. HTML tags normally come in pairs like
<b>and </b>. The first tag in a pair is the start tag, the second tag is the end tag (they are also
called opening tags and closing tags).
The purpose of a web browser is to read HTML documents and display them as web pages. The
browser does not display the HTML tags, but uses the tags to interpret the content of the page.
HTML elements form the building blocks of all websites. HTML allows images and objects to be
embedded and can be used to create interactive forms. It provides a means to create structured
documents by denoting structural semantics for text such as headings, paragraphs, lists, links,
quotes and other items. It can embed scripts in languages such as JavaScript which affect the
behavior of HTML webpages.
HTML can also be used to include Cascading Style Sheets (CSS) to define the appearance and
layout of text and other material.

COMMON HTML FORM CONTROL TAGS


TAG DESCRIPTION
<INPUT TYPE= TEXT
<INPUT TYPE= PASSWORD>

FORM CONTROL
Data Entry Field A one line data en field
Passwords field A one-line data entry field in
which the characters you type are displayed as

<TEXT AREA>

asterisks to hide them.


Multiple line data entry field Entry a

<INPUT TYPE= CHECKBOX

paragraph or more of a text


Checkbox Select an item by clicking

<INPUT TYPE= RADIO

its checkbox
Radio Button Select one of a group

<SELECT>

of radio buttons.
List Select one or more items from a

<INPUT TYPE= SUBMIT

List
Button When clicked, sends the

<INPUT DATA= RESET

forms data o the server


Button When clicked, resets all form
control to their defaults.

The definition for each control must include a name for the control, which is send to and used by
the server to identify the data that was returned from that control. Each control can have several
other attributes that define how it behaves. For example, the single data entry field has the
following attributes.
(1) Size
(2) Max length
(3) Value
The arrangement of paired tags in a typical Web page is given below. A browser does
displayed the tags for the user to see. Instead, the tags merely control the way the browser
display the output.

Structure of HTML Page


<HTML>
<HEAD>
<TITLE>
Hello World Example in HTML
</TITLE>
</HEAD>
<BODY>
Hello, World
</BODY>
</HTML>
1 .<HTML> tag declares that we are writing HTML document.

HTML document contains 2 sections


(a) Head Section
(b) Body section

Head Section describes the document.

Body Section contains the document itself.

2. To start the Head section use head tag. (<HEAD> tag).


3. Inside the Head Section is the title of the document. Start the title with the <TITLE> tag.
Immediately after that with no extra spaces type the title
4. To close the title use end tag that is uses < /TITLE > tag.
5. To finish the Head Section use <I HEAD > tag.
6. Start the body section with <BODY > tag.
7. Type the text of the document and close the Body Section with <I BODY > tag.
8. End the document with </HTML> tag.

STEPS FOR CREATING A WEB SITE


(1) Plan the structure of the site, so that we have an idea what information will be on at least
the home page and other key pages. Be sure that we have thought about the audience for the
site, what our main purpose is and how often we plan to update the site.
(2) Using a text editor or web page editor, create the pages for our site and save them as
HTML files. Use a graphics editor to creates or view graphics or the Web pages.
(3) Using our own browser, View the HTML files that we have created. Check that the text
is spelled correctly, that the graphics look good and that links among our pages work.
(4) Publish our Web Site by putting all of its files on a Web Server.
(5) Using our browser, view the Web pages as stored on the Web Server. If we expect a wide
audience for our Web Site, view the page by using the two most recent versions of the most
popular Web browser because different browsers format pages slightly differ. Also, view the
pages from a computer other than the one on which you created the pages, so that we can
spot accidental references to files on our own hard disk.

(6) Publicise our site, get new ideas and repeat the steps.

SYSTEM DEVELOPMENT LIFE CYCLE


System development of life cycle (SDLC), or simply called system life cycle is based on the life
cycle stages of natural systems. Natural systems go through the four stages of life cycle-birth,
growth, maturity, and decay. In the same way, an information system, which is a man-made
system, passes through different stages though it is not necessary that these stages exactly
resemble the stages of natural systems. An information system development life cycle has
different stages as shown in following figure
Project definition
Recognition of need

System analysis
Data collection

System design
Conceptual design

Implementation

Maintenance and Post implementation

DATA COLLE

Functional Diagram
VIEW
HOME
Comment
PAGE

Choose
Categories

Product
Information

size, quantity

Name, phone no. e-mail.


E-mail

Registration
Name
Ph. No.
E-mail
Members log in
Feedback

Place
Order

Payment
Contact
Us

Invoice No. , address

Price list

Generate
Invoice

SITE MAP

HOME PAGE

Contact Us

Product Information

About Us

Men

Women

Summer Collection

Feedback

Summer Collection

Winter Collection

KIDS

Baby Collection

School & Rock


Collection

Winter Collection

DATABASE DESCRIPTION
FILE NAME: REGISTRATION PROCESS FOR MEMBERSHIP
Field Name
Field
Field Type
Size (No of
Description
Code
Characters)
Desired
D_UN
Alphanumeric
10
Unique username for every
Username
customer
Email Address
Email
Alphanumeric
20
Email id of customer
First Name
F_N
Alphabetic
15
First name of customer
Last Name
L_N
Alphabetic
15
Last/Family
name
of
customer
Address Line 1 AL_1
Alphanumeric
10
House No. of customer
Address line 2
AL_2
Alphanumeric
10
Street name or number/
locality name
Town/City
Town
Alphabetic
10
Name of the customers
town or city
State
State
Alphabetic
15
Name of the customers
state
Country
Country
Alphabetic
15
Name of the customers
country
Postal/ZIP code PZC
Numeric
10
Postal/ZIP code of the
customers area

FILE NAME: FEEDBACK FORM


Field Name
Field
Field Type
Size (No of
Description
Code
Characters)
First Name
F_N
Alphabetic
15
First name of customer
Last Name
L_N
Alphabetic
15
Last/Family
name
of
customer
Email Address Email
Alphanumeric
20
Email id of customer
Write Feedback W_F
Alphanumeric
100
Feedback to be written by
the customer
INPUT NAME: REGISTRATION PROCESS FOR MEMBERSHIP
Name of Label in
Description/Purpose
Validation Required
the Form
Desired Username
Unique username for every Alphanumeric (10)
customer
Email Address
Email id of customer
Alphanumeric (20)
First Name
First name of customer
Alphabetic (15)
Last Name
Last/Family name of customer Alphabetic(15)
Address Line 1
House No. of customer
Alphanumeric(10)
Address line 2
Street name or number/ locality Alphanumeric(10)
name

Town/City
State
Country
Postal/ZIP code

Name of the customers town


or city
Name of the customers state
Name of the customers
country
Postal/ZIP
code
of
the
customers area

Alphabetic(10)
Alphabetic(15)
Alphabetic(15)
Numeric(10)

INPUT NAME: PURCHASE ORDER FORM (FOR PURCHASE ORDER


PROCESS)
Name of Label in
Description/Purpose
Validation Required
the Form
First Name
First name of customer
Alphabetic(15)
Last Name
Last/Family name of customer Alphabetic(15)
Email Address
Email id of customer
Alphanumeric(20)
Write Feedback
Feedback to be written by the Alphanumeric(100)
customer

Field Name
First Name
Last Name
Email Address
Address
Payment mode

FILE NAME : PLACE ORDER


Field Code
Field Type
Size (No of
Fname
Lname
Email
Address
Payment

Alphabetic
Alphabetic
Alphanumeric
Alphanumeric
Alphabetic

Characters)
15
15
20
100
20

Description
First name of customer
Last name of customer
Email of the customer
Address of the customer
Mode of payment

CHAPTER: 2
SYSTEM
REQUIREMENT

SYSTEM REQUIREMENT

To be used efficiently, all computer software needs certain hardware components or other
software resources to be present on a computer. These pre- requisites are known as system
requirements. This html project requires a certain minimum system requirements.
HARDWARE
PC with 223Mhz minimum required (single or dual processor system)
128 MB of RAM or higher recommended (64 MB minimum supported)
1.5 GB of available hard disk space.
SOFTWARE

Operating system:-Windows XP or higher.

Browser:- Internet Explorer

Notepad

Chapter: 3
Coding & Output

The home page of the website (www.uci.com).

Coding of the main Home Page:

<html>
<head><img src = "ucb.jpg" width = "1310">
<title> United Colors of India </title>
</head>
<Body link = "white" background = "greenbackground.jpg">
<hr>
<font face ="arial" size = "+2" color = "white">
<a href = "homepage.html"> Home</a>
&nbsp&nbsp&nbsp&nbsp&nbsp
<a href = "product.html">Products</a>
&nbsp&nbsp&nbsp&nbsp
<a href = "about us.html">About Us</a>
&nbsp&nbsp&nbsp&nbsp
<a href = "feedback.html">Feedback</a>
&nbsp&nbsp&nbsp&nbsp
<a href = "contact us.html"> Contact Us </a>
&nbsp&nbsp&nbsp&nbsp
<a href = "place order.html">Place Order </a>
<marquee behavior = "alternate" scrollamount = "11"> .....Welcome to the United Colors of
INDIA..... </marquee>
<br>
<hr>
<a href = "man.html">
<img src = "men.jpg" width = "500"></a>
<a href = "man.html">
<img src = "men2.jpg" width ="350" height = "390"></a>
<a href = "woman.html">
<img src = "women.jpg"width = "300"></a>
<br>
<a href = "baby collection.html">
<img src = "kid.jpg"></a>
<a href = "kids.html">
<img src = "kid3.jpg"></a>
<a href = "woman.html">

<img src = "women2.jpg" width = "400" height = "650"></a>


<hr>
<marquee>
<img src = "puma.jpg">
<img src = "adidas.jpg">
<img src = "allen_solly.jpg">
<img src = "and.jpg">
<img src = "arrow.jpg">
<img src = "biba.jpg">
<img src = "cat.jpg">
<img src = "fila.jpg">
<img src = "fm.jpg">
<img src = "nike.jpg">
<img src = "lee.jpg">
<img src = "people.jpg">
<img src = "peter_england.jpg">
<img src = "phosphorus.jpg">
<img src = "polo.jpg">
<img src = "w.jpg">
<img src = "wrangler.jpg">
</marquee>
<hr>
</font>
</body>
</html>

Then, when a customer or a surfer click on the links the following web pages opens,

THE CLICK ON PRODUCT LINK:


<html>
<head><img src = "ucb.jpg" width = "1310" height = "150">
<title> Product </title>
</head>
<BODY link = "white" background = "greenbackground.jpg">
<font face= "arial" size = "+2" color ="white">
<hr>
Man Collection
<ul>
<li><a href="winterman.html">Winter collection</a>
<ul>
<li>Jackets
<li>Sweat shirts
<li>Sweater
<li> Formal & Casual coats
<li> Hand gloves
<li> High neck
</ul>
<li><a href = "man.html">Summer collection</a>
<ul>
<li>T-shirts

<li>Shirts
<li>Patter T-shirts(customized)
<li>Trousers
<li>Pant
<li>Jeans
<li>Formal shirts
</ul>
</ul>
<hr>
<hr>
Woman Colloection
<ul>
<li><a href = "woman.html">Summer collection</a>
<ul>
<li>Shirts, Top & Tunics
<li>Dresses & Skirts
<li>Ethnic Wear
<li>Saries
<li>Jeans & Shorts
<li>Trousers & Capris
<li>Polos & T-Shirts
</ul>
<li><a href = "woman.html">Winter collection</a>
<ul>
<li>Sweaters & Pullovers
<li>Sweatshirts
<li>Jackets
<li>Raincoats
<li>Cardigans
<li>Thermals
</ul>
</ul>
<hr>
<hr>
Kids Collection
<ul>
<li><a href = "baby collection.html">Baby Collection</a>
<ul>
<li>Mind Games
<li>Toys

</ul>
<li><a href = "kidsummer.html">Boys & Girls</a>
<ul>
<li>T-Shirts
<li>Shorts
<li>Patterned T-Shirts
</ul>
</ul>

<hr>
<hr>
<a href = "homepage.html"> Back to Home</a>
<a href = "product.html">Products</a>
<a href = "about us.html">About Us</a>
<a href = "feedback.html">Feedback</a>
<a href = "place order.html">Place Order </a>
</font>
</body>
</html>

Then, when customer click on the categourised product like on mens or its sub web page on
winter collection or summer collection

WINTER COLLECTION

Coding of the above web page:


<html>
<head><img src = "ucb.jpg" width = "1310" height = "150">
<title> winter collection </title>
</head>
<BODY link = "white" background = "greenbackground.jpg">
<font face= "arial" color = "white" size = "+2">
<hr>
<center>
Winter Collections
<br>
<a href = "place order.html">
<img src = "w.jpeg">
<img src = "w1.jpeg">
<img src = "w2.jpeg">
<img src = "w3.jpeg"><br>
<img src = "w4.jpeg">
<img src = "w5.jpeg">
<img src = "w6.jpeg">
<img src = "w7.jpeg"><br>
<img src = "w8.jpeg">
<img src = "w9.jpeg">
<img src = "w10.jpeg">
<img src = "w11.jpeg"><br>
<img src = "w12.jpeg">

<img src = "w13.jpeg">


<img src = "w14.jpeg">
<img src = "w15.jpeg"><br>
<img src = "w16.jpeg">
<img src = "w17.jpeg">
<img src = "w18.jpeg">
<img src = "w19.jpeg">
</a>
<hr>
<a href = "http://www.flipkart.com/mens-clothing/winter-seasonal-wear/pr?p%5B%5D=sort
%3Dpopularity&sid=2oq%2Cs9b%2Cqgu#jumpTo=5206|45">More Choices</a>
<hr>
<a href = "homepage.html"> Back to Home</a>
<a href = "product.html">Products</a>
<a href = "about us.html">About Us</a>
<a href = "feedback.html">Feedback</a>
<a href = "place order.html">Place Order </a>

</body>
</html>

Clicks ON THE SUMMER COLLECTION :

Coding of the Summer collection web page:


<html>
<head><img src = "ucb.jpg" width = "1310" height = "150">
<title> summer collection
</title>
</head>
<body link = "white" background = "greenbackground.jpg">
<font face="arial" color = "white" size ="+3">
<hr>
<center>
<a href = "place order.html">
JEANS
<br>
<img src = "s.jpeg">
<img src = "s1.jpeg">
<img src = "s2.jpeg">
<img src = "s3.jpeg"><br>
<img src = "s4.jpeg">
<img src = "s5.jpeg">
<img src = "s6.jpeg">
<img src = "s7.jpeg"><br>
<img src = "s8.jpeg">
<img src = "s9.jpeg">

<img src = "s10.jpeg">


<img src = "s11.jpeg">
<hr>
Shirts
<br>
<img src = "t.jpeg">
<img src = "t1.jpeg">
<img src = "t2.jpeg">
<img src = "t3.jpeg"><br>
<img src = "t4.jpeg">
<img src = "t5.jpeg">
<img src = "t6.jpeg">
<img src = "t7.jpeg"><br>
<img src = "t8.jpeg">
<img src = "t9.jpeg">
<img src = "t10.jpeg">
<img src = "t11.jpeg">
<hr>
<a href = "http://www.flipkart.com/mens-clothing/t-shirts/pr?p%5B%5D=sort
%3Dpopularity&sid=2oq%2Cs9b%2Cj9y#jumpTo=3928|75">More Choices...... </a>
<hr>
<a href = "homepage.html"> Back to Home</a>
<a href = "product.html">Products</a>
<a href = "about us.html">About Us</a>
<a href = "feedback.html">Feedback</a>
<a href = "place order.html">Place Order </a>
</body>
</html>

Now, the women section:

The WINTER COLLECTION:

AND THE SUMMER COLLECTION:

Coding of winter and summer collection web pages:

<html>
<head><img src = "ucb.jpg" width = "1310" height = "150">
<title> summer collection(women)
</title>
</head>
<body link = "white" background = "greenbackground.jpg">
<font face="arial" color = "white" size ="+3">
<hr>
<center>
Tops and T-Shirts
<br>
<img src = "two.jpeg">
<img src = "two1.jpeg">
<img src = "two2.jpeg">
<img src = "two3.jpeg"><br>
<img src = "two4.jpeg">
<img src = "two5.jpeg">
<img src = "two6.jpeg">
<img src = "two7.jpeg"><br>
<img src = "two25.jpeg">
<img src = "two9.jpeg">
<img src = "two10.jpeg">
<img src = "two11.jpeg"><br>
<img src = "two12.jpeg">
<img src = "two13.jpeg">
<img src = "two14.jpeg">
<img src = "two15.jpeg"><br>
<img src = "two16.jpeg">
<img src = "two17.jpeg">
<img src = "two18.jpeg">
<img src = "two19.jpeg"><br>
<img src = "two20.jpeg">
<img src = "two21.jpeg">
<img src = "two22.jpeg">
<img src = "two23.jpeg"><br>
<img src = "two24.jpeg">
<img src = "two25.jpeg">
<hr>
Jeans & Shorts
<br>

<img src = "tro.jpeg">


<img src = "tro1.jpeg">
<img src = "tro2.jpeg">
<img src = "tro3.jpeg"><br>
<img src = "tro4.jpeg">
<img src = "tro5.jpeg">
<img src = "tro6.jpeg">
<img src = "tro7.jpeg"><br>
<img src = "tro8.jpeg">
<img src = "tro9.jpeg">
<img src = "tro10.jpeg">
<img src = "tro11.jpeg"><br>
<img src = "tro12.jpeg">
<img src = "tro13.jpeg">
<img src = "tro14.jpeg">
<img src = "tro15.jpeg"><br>
<img src = "tro16.jpeg">
<hr>
<br>
Winter Collection<br>
<img src = "win.jpeg">
<img src = "win0.jpeg">
<img src = "win1.jpeg">
<img src = "win2.jpeg"><br>
<img src = "win3.jpeg">
<img src = "win4.jpeg">
<img src = "win5.jpeg">
<img src = "win6.jpeg"><br>
<img src = "win7.jpeg">
<img src = "win8.jpeg">
<img src = "win9.jpeg">
<img src = "win10.jpeg"><br>
<img src = "win11.jpeg">
<img src = "win12.jpeg">
<img src = "win13.jpeg">
<img src = "win14.jpeg"><br>
<img src = "win15.jpeg">
<img src = "win16.jpeg">
<img src = "win17.jpeg">
<img src = "win18.jpeg"><br>
<img src = "win19.jpeg">
<hr>
<a href = "homepage.html"> Back to Home</a>

<a href = "product.html">Products</a>


<a href = "about us.html">About Us</a>
<a href = "feedback.html">Feedback</a>
<a href = "place order.html">Place Order </a>
</center>
</body>
</html>
And the next section is Kids Section, it also include two section, 1st one is baby collection and
second one is boys & girls cloth section.

Baby Collection:

Coding of this web page:


<html>
<head><img src = "ucb.jpg" width = "1310" height = "150">
<title> baby collection

</title>
</head>
<body link = "white" background = "greenbackground.jpg">
<font face="arial" color = "white" size ="+3">
<hr>
<center>
Baby Collections
<a href = "place order.html">
<br>
<img src = "toy.jpeg">
<img src = "toy1.jpeg">
<img src = "toy2.jpeg">
<img src = "toy4.jpeg"><br>
<img src = "toy5.jpeg">
<img src = "toy6.jpeg">
<img src = "toy7.jpeg">
<img src = "toy8.jpeg"><br>
<img src = "toy9.jpeg">
<img src = "toy10.jpeg">
<img src = "toy11.jpeg">
<img src = "toy12.jpeg"><br>
<img src = "toy13.jpeg">
<img src = "toy14.jpeg">
<img src = "toy15.jpeg">
<img src = "toy16.jpeg"><br>
<img src = "toy17.jpeg">
<img src = "toy18.jpeg">
<img src = "toy19.jpeg">
<img src = "toy20.jpeg"><br>
<img src = "toy21.jpeg">
<img src = "toy22.jpeg">
<img src = "toy23.jpeg">
<img src = "toy24.jpeg"><br>
<img src = "toy25.jpeg">
<img src = "toy26.jpeg">
<img src = "toy27.jpeg">
</a>
<hr>
<a href = "homepage.html"> Back to Home</a>
<a href = "product.html">Products</a>
<a href = "about us.html">About Us</a>
<a href = "feedback.html">Feedback</a>

<a href = "place order.html">Place Order </a>


</center>
</body>
</html>

And the Boys and girl collection :

Coding of the boys and girls section :


<html>
<head><img src = "ucb.jpg" width = "1310" height = "150">
<title> summer collection
</title>
</head>
<body link = "white" background = "greenbackground.jpg">
<font face="arial" color = "white" size ="+3">
<hr>
<center>
Boys & Girls
<a href = "place order.html">
<br>
<img src = "b.jpeg">
<img src = "b1.jpeg">
<img src = "g.jpeg">
<img src = "g1.jpeg"><br>
<img src = "b2.jpeg">
<img src = "b3.jpeg">
<img src = "g2.jpeg">
<img src = "g3.jpeg"><br>
<img src = "b4.jpeg">
<img src = "b5.jpeg">
<img src = "g4.jpeg">

<img src = "g5.jpeg"><br>


<img src = "b6.jpeg">
<img src = "b7.jpeg">
<img src = "g6.jpeg">
<img src = "g7.jpeg"><br>
<img src = "b8.jpeg">
<img src = "b9.jpeg">
<img src = "g8.jpeg">
<img src = "g9.jpeg"><br>
<img src = "b10.jpeg">
<img src = "b11.jpeg">
<img src = "g10.jpeg">
<img src = "g11.jpeg"><br>
</a>
<hr>
<a href = ""> More choices </a>

And now, if the surfer wants to know about the UCI the he can go for the ABOUT US link,
and the he get the following web page:

Coding of the About Us web page:


<html>
<head><img src = "ucb.jpg" width = "1310">
<title> About Us </title>
</head>
<body link = "white" background = "greenbackground.jpg">
<font face="arial" size = "+2" color = "white">
<hr>
<marquee>
<img src = "puma.jpg">
<img src = "adidas.jpg">
<img src = "allen_solly.jpg">
<img src = "and.jpg">
<img src = "arrow.jpg">
<img src = "biba.jpg">
<img src = "cat.jpg">
<img src = "fila.jpg">
<img src = "fm.jpg">
<img src = "nike.jpg">
<img src = "lee.jpg">
<img src = "people.jpg">

<img src = "peter_england.jpg">


<img src = "phosphorus.jpg">
<img src = "polo.jpg">
<img src = "w.jpg">
<img src = "wrangler.jpg">
</marquee>
<hr>
<center>
<h2>UNITED COLORS OF INDIA</h2>
</center>
The objective of this project is to create a website for UNITED COLORS OF INDIA which is a
global fashion brand, based in Delhi, India. It has a network of over 6,500 stores in 120
countries. The stores are managed by independent partners and generate a total turnover of over
2 billion dollars. The organization has various objectives which are as follows:
<ol>
<li>To create a shopping environment that caters to the apparel needs of the urban AfricanAmerican cowboy and cowgirl.
<li>To earn 80% market share and become the number one ethnic western wear apparel store in
southwest Houston, TX and achieve name recognition in the local cowboy community.
<li>To receive a 50% profit margin within the first year.
<li>To have a customer base of 1,000 by the end of the first operating year.
<li>To achieve a net profit of $75,000 by year two and $100,000 by year three.
</ol>
<br>
In order to achieve the above mentioned objectives the organization wants to promote its stores
through Internet. They want that their products should be available to all irrespective of location
and other constraints.
They deal in three main categories of Clothing:
<ol>
<li>Man Collection
<li>Woman Collection
<li>Kids Collection
<ol><br>
These are further classified into various categories such as
<br>
<ul>
<LI>Summer collection
<LI>Autumn Collection
<LI>Winter Collection
<LI>Spring Collection
</ul>
<br>

Customers will be able to enjoy shopping 24*7 online through organizations official website.
They can have easy accessibility to purchase clothes online through various modes of payment
<ul>
<li>Cash-on-delivery
<li>Debit card
<li>Credit card
</ul>
One can easily check their status of order and delivery and organization also have a good and
efficient return policy.
If any customer faces problem the organization have customer care services and after sales
services too.
</font>
<hr>
<a href = "homepage.html"> Back to Home</a>
<a href = "product.html">Products</a>
<a href = "about us.html">About Us</a>
<a href = "feedback.html">Feedback</a>
<a href = "place order.html">Place Order </a>
</body>
</html>
And the if any surfer wants to buy anything then he can click on the product or directly go to the
place order link. Following is the screen shot of that web page:

CODING
<html>
<head><img src = "ucb.jpg" width = "1310">
<title></title>
</head>
<body link = "white" background = "greenbackground.jpg">
<center>
<hr>
<font face= "arial" size = "+4" Color= "white"> PLACE ORDER </font>
<br><br>
<marquee><font face="arial" size = "+1" color = "white"> You can directly CLICK on the
product image and select that for placing order </marquee>
<hr></font>
<font face="arial" size = "+2" color = "white">
<form>
Unique Member ID &nbsp &nbsp &nbsp &nbsp &nbsp : <input type = "text" maxlength =
"15"></input><br><br>
First Name &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp :
<input type = "text" maxlength = "15"></input><br><br>
Last Name &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp :
<input type = "text" maxlength = "20"></input><br><br>
Email Address &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp: <input type =
"text" maxlength = "20"></input><br><br>
Address &nbsp &nbsp&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp
&nbsp &nbsp: <input type = "text" maxlength = "100"></input><br><br>
Payment Mode &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp: <input type =
"text" maxlength = "20" ></input><br><br>
<input type = "Submit" value="Submit
Details"></input>&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp
<input type = "Submit" value="Reset"></input>
</form>
</center>
<hr>
<a href = "homepage.html"> Back to Home</a>

<a href = "product.html">Products</a>


<a href = "about us.html">About Us</a>
<a href = "feedback.html">Feedback</a>
<a href = "place order.html">Place Order </a>
</body>
</font>
</html>
If any customer wants to give any feedback then they can click on feedback link and then submit
feedback:

Coding
<html>
<head><img src = "ucb.jpg" width = "1310">
<title> Feedback </title>
</head>
<Body link = "white" background = "greenbackground.jpg">
<hr>
<center>
<font face = "arial" size = "+4" color = "white">
Feedback

</font>
<hr>
<font face ="arial" size="+1" color="white">
Unique Member ID &nbsp &nbsp &nbsp &nbsp &nbsp : <input type = "text" maxlength =
"15"></input><br><br>
OR <br>
First Name &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp :
<input type = "text" maxlength = "15" ></input><br><br>
Last Name &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp :
<input type = "text" maxlength = "15" ></input><br><br>
Email Address &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp: <input type =
"text" maxlength = "20"></input><br><br>
Feedback :<textarea cols="60" rows = "5" maxlength = "100"></textarea><br><br>
<br><br>
<input type = "Submit" value="Submit
Details"></input>&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp
<input type = "Submit" value="Reset"></input>
</center>

<hr>
<a href = "homepage.html"> Back to Home</a>
<a href = "product.html">Products</a>
<a href = "about us.html">About Us</a>
<a href = "feedback.html">Feedback</a>
<a href = "place order.html">Place Order </a>

</body>
</html>

Contact us page is for those customer who want to contact us:


Webpage:

Coding
<html>
<head><img src = "ucb.jpg" width = "1310">
<title> Contact Us </title>
</head>
<Body link = "white" background = "greenbackground.jpg">
<hr>
<center>
<font face = "arial" size = "+4" color = "white">
Contact Us
</font>
<hr>
<font face ="arial" size="+1" color="white">
(within 2 hours, we try to contact you, or you can call us on our toll free number-1800-201-201)
<br><br>
Unique Member ID &nbsp &nbsp &nbsp &nbsp &nbsp : <input type =
"text"></input><br><br>
OR <br>
First Name &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp :
<input type = "text"></input><br><br>

Last Name &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp :
<input type = "text"></input><br><br>
Email Address &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp: <input type =
"text"></input><br><br>
Phone No.&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp: <input type
="text"></input>
</body>
</html>

Registration form for those customer who not yet registered online on website:

Coding
<html>
<head><img src = "ucb.jpg" width = "1310">
<title></title>
</head>
<body link = "white" background = "greenbackground.jpg">
<font face="arial" size = "+2" color = "white">
<hr>

<center>
<form>
Name of the Member &nbsp &nbsp &nbsp &nbsp : <input type = "text" maxlength = "10"
></input><br><br>
Email Address &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp: <input type =
"text" maxlength = "20"></input><br><br>
First Name &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp :
<input type = "text" maxlength = "15"></input><br><br>
Last Name &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp :
<input type = "text" maxlength = "15"></input><br><br>
Address Line 1 &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp : <input type = "text"
maxlength = "10"></input><br><br>
Address Line 2 &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp : <input type = "text"
maxlength = "10"></input><br><br>
Town/City &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp
&nbsp : <input type = "text" maxlength = "10"></input><br><br>
State &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp
&nbsp &nbsp &nbsp
: <input type = "text" maxlength = "15"></input><br><br>
Country &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp
&nbsp : <input type = "text" maxlength = "15"></input><br><br>
Postal/Zip Code &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp : <input type = "text"
maxlength = "15"></input><br><br>
<input type = "Submit" value="Submit
Details"></input>&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp
<input type = "Submit" value="Reset"></input>
</form>
</center>
<a href = "place order.html">
<p align = "right"> NEXT </p>
</a>

<hr>
<a href = "http://www.flipkart.com/mens-clothing/t-shirts/pr?p%5B%5D=sort
%3Dpopularity&sid=2oq%2Cs9b%2Cj9y#jumpTo=3928|75">More Choices...... </a>
<hr>
<a href = "homepage.html"> Back to Home</a>
<a href = "product.html">Products</a>
<a href = "about us.html">About Us</a>
<a href = "feedback.html">Feedback</a>
<a href = "place order.html">Place Order </a>

</body>
</font>
</html>

CHAPTER 4
TESTING

TESTING

Acceptance testing

Software testing is an investigation conducted to provide stakeholders with information about


the quality of the product or service under test. Software testing can also provide an objective,
independent view of the software to allow the business to appreciate and understand the risks of
software implementation. Test techniques include, but are not limited to, the process of executing
a program or application with the intent of finding software bugs (errors or other defects).
Software testing can be stated as the process of validating and verifying that a computer
program/application/product:

meets the requirements that guided its design and development,

works as expected,

can be implemented with the same characteristics,

And satisfies the needs of stakeholders.

Testing methods
White-Box testing

Black-box testing

Specification-based testing

Grey-box testing

.
Testing levels
Unit testing

Integration testing

System testing

CHAPTER 5
IMPLEMENTATION
&
POST
IMPLEMENTATION

IMPLEMENTATION
Implementation
System implementation phase is less creative than the design phase.It is basically related to user
training. Site prepatation and file conversion. Depending on the nature of the new system.user
training is planned and conducted. Site preparation is required when the new system is quite
different as compared to earlier one like the use of communication network by the new system
conversion from old to new system takes place either at the time of user training or little later.
MAINTENANCE AND POST-IMPLEMENTATION
Post implementation
After the new system is installed and user staff is adjusted to the changes created by the new
system,post implementation stage begins which consists of mainly evaluation and maintenance.
Evaluation involves an analysis of how the new system is achieving its objectives originally
envisaged.users and technical staff may go through a formal post-implementation audit that
determines how well the new system is working and if not, what kind of changes are required.
Maintenance involves maintaining hardware, software, and other devices with a view to have
their optimum life, post-implementation may also involve enchancing the capacity of the present
system either by updating hardware and software or by adding balancing equipment , or both.
Once the newq system is in place,it will work through its useful life anc reac to the level of
maturity and finally decay yielding place to another system. How much time the system takes
from maturity to decay depends on its capability and the information requirements of the
organisation.

BIBLIOGRAPHY
BOOKS:-

Computer Applications II , AnuradhaAggarwal


21 Days In HTML- TATA Mcgraw Hills Publication
INTERNET:-

You might also like