You are on page 1of 17

MIS PROJECT

ON

PLUSHY LEISURE
Submitted in partial fulfillment of the requirements
for the award of the Degree of
BACHELOR OF BUSINESS ADMINISTRATION

Guru Gobind Singh Indraprastha


University, Delhi

Guide: Miss. SAKSHI

SUBMITTED BY: Samiah Lodi 05414201714


Deeksha Khanna 31121401714
Sartaj Singh 01314201714
Mansa Panda 30721401714

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 TAKKAR for 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.

SAMIAH LODI
DEEKSHA KHANNA
SARTAJ SINGH
MANASA PANDA

STUDENT DECLARATION
This is to certify that we have completed html project on PLUSHY LEISURE 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

: SAMIAH LODI
DEEKSHA KHANNA
SARTAJ SINGH
MANASA PANDA

CERTIFICATE
This is to certify that that the html project titled PLUSHY LEISURE 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

MANAGEMENT INFORMATION SYSTEM (MIS)


A management information system (MIS) is a system or process that
provides information needed to manage organizations effectively.
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.
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.

ADVANTAGES OF MIS

ABOUT THE WEBSITE


Everyone has a king or queen inside them. A king & his queen deserves
to live the life of luxury.
Those early morning swimming sessions or a walk around the lush green
gardens followed by a royal breakfast & to spend the entire day in the lap of
nature. This state of great comfort is dream for every one of us.
We at PLUSHY LEISURE are here to fulfil all your wildest dreams of luxury
to make your leisure time as much lavish as much possible. We provide you the
list of top ten luxurious hotels around the globe. You can choose anyone of them
& live your dream life!

Emirates Palace, Abu Dhabi


Mardan Palace Hotel, Turkey
The Westin Excelsior, Rome
Burj Al Arab Hotel, Dubai
The Plaza, New York
Atlantis Paradise Island, Bahamas
Palms, Las Vegas
Four Seasons George, Paris
Ritz-Carlton, Tokyo
Madarin Oriental, London

Our website narrows down these top ten hotels & provides all the information
for these hotels so that the seekers could find the destination for the best
memorable moments.
Objective of the website
1. To create
2. To receive a 50% profit margin within the first year.
3. To have a customer base of 1,000 by the end of the first operating year.
4. To achieve a net profit of $75,000 by year two and $100,000 by year
three.
Categories:
Deluxe

Suite
Penthouse

CHAPTER-2
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.

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.

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
SYSTEM DESIGN

CHAPTER 5
SYSTEM TESTING
5.1 TESTING DEFINITION
System 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).

5.2 TESTING PROCESS

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.

5.3 TYPES OF TESTING


Testing methods
White-Box testing

Black-box testing

Specification-based testing

Grey-box testing

.
Testing levels
Unit testing

Integration testing

System testing

5.4 NEED FOR TESTING

CHAPTER 6
SYSTEM MAINTENANCE
6.1 MAINTENANCE
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 enhancing the capacity of the
present system either by updating hardware and software or by adding balancing equipment ,
or both.
Once the new system is in place mat will work through its useful life and reach 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.

6.2 MAINTENANCE MODEL

BIBLIOGRAPHY AND REFERENCE


BOOKS:Computer Applications II , AnuradhaAggarwal
21 Days In HTML- TATA Mcgraw Hills Publication

INTERNET:Wikipedia.org

You might also like