Anda di halaman 1dari 50

A

HTML Project Report


On WEBSITE FOR
Hospital
in the partial fulfillment of degree of

Bachelor of Business Administration (Gen.)

(2015-2018)

Under guidance of

MS. MANORMA

Asst. Professor, FIMT

Submitted by:

ROHIT SHARMA

Enrollment No: 01951401715

BBA (Gen.) 5th Semester

FAIRFIELD INSTITUTE OF MANAGEMENT AND TECHNOLOGY


Affiliated to Guru Gobind Singh Indraprastha University, Delhi.
Kapashera, New Delhi- 110037
STUDENT DECLARATION
I hereby declare that the project entitled" WEBSITE FOR Hospital“ Under the guidance of
Ms. MANORMA” submitted in the partial fulfillment of degree of bachelor of business
administration BBA (Gen.) from Fairfield Institute of Management and Technology, New
Delhi”. This is my original work and this project work has not formed the basis for the award of
any Degree to the best of my knowledge.

Name: Meenakshi

Enrollment:

Place: New Delhi,

Date:
CERTIFICATE BY THE GUIDE
This is to certify that project title “WEBSITE FOR Hospital" is the original work of
Meenakshi of BBA (Gen.) 5thSemester and has been duly completed under my guidance and
supervision up to my fulfillment of the requirement for the award of the degree of BBA from
FAIRFIELD INSTITUTE OF MANAGEMENT & TECHNOLOGY (GGSIPU) and has not
been submitted anywhere in any other university for the award of any degree.

Ms.MANORMA

Asst. professor

Management, FIMT

Signature of the Guide


ACKNOWLEDGEMENT

It is pleasure to acknowledge many people who knowingly and unwittingly helped me, to complete my
project. First of all let me praise god for all the blessings, which carried me through all those years.I am
particularly indebted to Dr. R.K GARG (Director) Fairfield Institute Of Management Technology, which
inculcated in me utmost respect for human values and groomed me up in the field of management.

First & foremost, I would like to express my regards to Ms. MANORMA for her constant encouragement
and support. I would also like to express my immense gratitude towards all the lecturers of our college for
providing the invaluable knowledge, guidance, encouragement extended during the completion of this
project

.I extend my sincere gratitude to all my teachers and guide who made unforgettable contribution. Due to
their sincere efforts I was able to excel in the work entrusted upon me.last but not the least; I am grateful to
my parents, my sister, my brother, my friends and all well wishers for their moral support and
encouragement during the entire period of time.

Signature of The Student


CONTENTS
S.NO. TOPIC PAGE NO.

1. Student declaration 1

2. Certificate by the guide 2

3. Acknowledgement 3

4. Chapter – 1: Introduction 5 – 13

5. Chapter – 2: System Requirements 14 – 15

6. Chapter – 3: Coding and Output 16 – 38

7. Chapter – 4: System Testing 39 – 41

8. Chapter - 5: Implementation 42 – 43

9. Chapter – 6: System Maintenanceand Post 44 - 47


Implementation

10. Bibliography 50
CHAPTER-1

INTRODUCTION
INTRODUCTION

One of the most important steps involved in creating an Hospital website is deciding what content

will be included and how it will be organized. Building an Hospital web site provides a unique

addition to the curriculum. In the development phase, students are always wants these kinds of

materials in any Hospital website.

Hospital information. General information such as the doctors and convocation notice along with

facilities should be included. Making mention of the Hospital details is also useful. The

Hospital’s history, mission statement, and awards received are interesting and serve to promote a

feeling of community. Other information about the Hospital’s funds, facilities may also be

included.

Extra activities. special events may create their own pages describing their purposes and

anticipated activities for the entire year. Meeting and event schedules with detailed information

are useful for informing public and gaining their interest.

Links. There are many excellent resources available on the Web for general public Providing links

to some of these sources is very helpful. Be sure to check the links periodically to make sure the

resources are still available.

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 analyze

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.


HTML FORM CONTROL TAGS
TAG DESCRIPTION FORM CONTROL

<INPUT TYPE= “TEXT” Data Entry Field A one line data en field

<INPUT TYPE= “PASSWORD”> Passwords field A one-line data entry field in


which the characters you type are displayed as
asterisks to hide them.

<TEXT AREA> Multiple line data entry field Entry a


parara h or more of a text

<INPUT TYPE= “CHECKBOX” Checkbox Select an item by clicking


its checkbox

<INPUT TYPE= “RADIO” Radio Button Select one of a group


of radio buttons.

<SELECT> List Select one or more items from a

List

<INPUT TYPE= “SUBMIT” Button When clicked, sends the


form’s data o the server

<INPUT DATA= “RESET” Button When clicked, resets all form


controls 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 display 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

Head Section

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) Publicize our site, get new ideas and repeat the steps.
CHAPTER-2
SDLC APPROACH
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.

The different phases of a typical SDLC are as:


1. Request for Project (RFP)
The first stage is the RFP wherein a request to start a project is made. The request can bemade
either by the top management or end users.

2. Detailed requirement Gathering


As the RFP is signed off /approved, requirement gathering starts. Business Analysts gather the
requirements from the user and prepare a SRS document. This document then needs to be signed
off by the user to approve that the requirements mentioned in SRS have been rightly
comprehended.
3. Design
After the SRS sign off, design phase starts, wherein the software development starts at the
vendors end. Here also, two types of documents are prepared. a. High Level design
Documents
These documents contain Data Flow diagrams, Process Flow Charts etc. This document some
time called Architecture Design Document, because it described the architecture view of the
proposed software product.
4. Development
Post finalization of the software design, development team uses the design document to develop
individual software units.
Post completion of development, the development team does the unit testing and initiates SIT.
On successful completion of testing, the software is released for UAT.

5. Testing
Before software is deployed it is tested to check if it meets all the requirement criteria. For this,
a System Test Plan with System Test Cases is prepared.

6. Implementation
After the User signs off the developed software, a pilot is implemented.
CHAPTER 3

SYSTEM REQUIREMENTS
SYSTEM REQUIREMENTS

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

Processor :- P4 or higher recommended

RAM:- 128 MB or higher recommended

HDD: - 10 GB of available hard disk space.

SOFTWARE

Operating system:-Windows 98 or higher.

Browser:- Internet Explorer, Google Chrome or others

Office Automation Tool:- MS Office 2003 or higher recommended


CHAPTER 4

SYSTEM TESTING

&
IMPLEMENTATION
SYSTEM 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

Acceptance test

Implementation

System implementation phase is less creative than the design phase. It is basically related to user

training. Site preparation 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.
CHAPTER-6

SYSTEM MAINTENANCE &

POST-IMPLEMENTATION
System Maintenance

After a system is implemented and is in operation. It requires maintenance on regular basis. When

a system is in operation, modifications are made so that the system continues to provide the needed

support. These modifications are called system maintenance. Generally, system maintenance is

performed for three reasons.

1. To correct errors: - uncovering bugs in the programs or weaknesses in the design that

were not detected during testing, and correcting these weaknesses.

2. To keep system current: -over the time, changes occur in the systems environment that

require modifications in the system design and software.

3. To improve the system: - continuous improvement in the system is required to meet user

requirements.

System maintenance may be undertaken either by in-house maintenance team or the maintenance

work can be assigned to vendors or other system maintenance agencies. In those organization.

Where number of computers installed is large enough. In house maintenance team may be given

the responsibility of system maintenance. In smaller organizations. System maintenance involves

hardware maintenance and software maintenance.

Hardware Maintenance

Hardware maintenance includes computer hardware and its peripherals as well as network

maintenance. Hardware maintenance can take place in three forms preventive maintenance,

breakdown maintenance, and replacement maintenance.

Preventive Maintenance: Preventive maintenance is regarded as ‘stitch in time that saves nine’.

Preventive maintenance of hardware is a precautionary measure. There should be a schedule for

weekly or monthly maintenance of each machine. Though sometimes. It appears that preventive
maintenance is an addition cost, it saves lot by avoiding loss to production loss. It also helps

increasing the useful life of hardware.

Breakdown Maintenance: Breakdown maintenance is undertaken when a machine breaks down

and stops working because of damage of any part. When the machine falls because of damaged

part, the part can be got repaired or new part is installed. In part repairing. The organization should

make a decision regarding the number of times, a particular part may be repaired. Replacement

Maintenance: Replacement maintenance involves replacing the major devices of hardware like

keyboard, monitor, printer, or other devices that are at ending stage of their useful life, generally,

various devices of hardware do not complete their life cycle simultaneously, and therefore, the

organization should formulate a policy indicating the time by which a particular device has to be

replaced.

Software Maintenance

Software maintenance is more critical as compared to hardware maintenance because there are

many issues involved in software maintenance. Software maintenance covers wide range of

activities, including correction of coding and design errors. Updating documentation and test data,

and providing user support. Many activities classified as software maintenance are actually

enhancements. While maintenance means adding, modifying, or redeveloping the codes to support

changes in the specifications. Although software does not wear out like the hardware, it ages and

eventually fails to perform because of cumulative maintenance. Over the time, the integrity of the

program, test data, and documentation degenerates as a result of modifications.

Eventually, it takes more effort to maintain the application than to rewrite it.
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 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, it 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 organization.
CHAPTER 5

CODING & OUTPUT


CODING & OUTPUT

FRAME
<html>

<head>

<title>frame</title>

<frameset rows="30%,*">

<frame src="image.html" frame="top" name="img">

<frameset cols="10%,*">

<frame src="left.html" name="left">

<frame src="" name="right">

</frameset>

</head>

</html>
.
FRAME – 2

<html>

<head>

<title>left</title>

</head>

<body> <a

href="home.html"

target="right">HOME</a>

<br></br> <a

href="ABOUT US.html"

target="right">ABOUT</a

>

<br></br>

<a href="CONVOCATION NOTICE.html" target="right">CONVOCATION

NOTICE</a>

<br></br>

<a href="OUR DOCTORS.html" target="right">OUR

DOCTORS</a>
<br></br> <a href="NURSING.html"

target="right">NURSING

HOME</a>

<br></br> <a

href="FACILITY.html"

target="right">FACILITY</a

> <br></br>

<a href="CONTACT.html" target="right">CONTACT

US</a>

</body>

</html>
HOME

<html>

<head>

<title>home</title>

<body bgcolor="pink">

<font size="6" color="black">

<p align="center">

Dr.Vedant Hospital, formerly known as Willingdon Hospital, was

established by the Britishers for their staff and had only 54 beds.

After independence, its control was shifted to New Delhi Municipal Committee.

In 2013, its control was again transferred to the Central Government of Independent India.

The hospital has grown over the years and is currently having about 984 beds, spread

over in 30 acres of land.

It caters to the population of New Delhi and Central District, apart from

patients from other areas and even from out side Delhi. It is having 71 beds

in a Nursing Home for the C.G.H.S beneficiaries, including Maternity

Nursing Home.</p>

</body>

</head>

</html>
ABOUT US

<html>

<head>

<title> about</title>

<body bgcolor="skyblue">

<font size="6" color="black">

<p align="center">

It is fully funded by the Rahul and Vishal.

No Emergency Patients are Refused treatment in this Hospital.

A non-invasive Cardiac Lab and a Cardiac Cath Lab exists in this hospital,

in which facility for TMT, Echo - Cardiography, Coronary Angiography

and Pace Maker implantation are available.

Cardiothoracic and Vascular Surgery, Neuro Surgery facilities are available in the Hospital.

This hospital has round the clock emergency services in Medicine, Surgery,

Orthopedics and Paediatrics.

The facilities in other specialties are also available on call basis.

All supportive services like laboratory, X - Ray, CT-Scan, Ultrasound,

Blood Bank and Ambulances are available round the clock.


A Coronary Care Unit and an Intensive Care Unit exists in the hospital for serious Cardiac

and Non-Cardiac patients. The hospital has laid down disaster action plan & disaster beds,

which are made operational in case of mass casualties and disaster.

In a year hospital provides services to about 12 lakhs patients as OPD cases,

admits about 46,000 patients in Indoor and about 1.5 lakhs patients are attended in the

Emergency.

Similarly about 5,000 CT Scan, 1.70 lakhs X-Ray cases, 28 lakhs laboratory tests and about

17,000 Ultrasound are done.

Hospital conducts about 9,000 Major and 40,000 Minor operations during a year. Hospital

has two Incinerators, one Micro Wave Machine and two Plastic Shredders for sound

hospital waste disposal system.

</p>

</body>

</head>

</html>
CONVOCATION NOTICE
<html>

<head>

<title>courses</title>

<body bgcolor="green">

<font size="4" color="black">

Notice of 5th Foundation Day of the institute is scheduled to be held on 25th Feb,2014 regarding

Annual Convocation

A Convocation Notice for Annual Convocation of Post Graduate Institute of Medical Education &

Research,

Dr. RML Hospital is scheduled to be held on 25th February, 2014

A Convocation Notice for Annual Convocation of Post Graduate Institute of Medical Education &

Research,

Dr. RML Hospital is scheduled to be held on 25th February, 2014

</body>

</head>

</html>
OUR DOCTORS
<html>

<head>

<title>courses</title>

<body bgcolor="white">

<font size="3">

Head of Orthopedics Department

“Prof. Surya Bhan" is former Head of

Orthopedics Department,

Chief of Emergency Services and Chief of Trauma Centre,

AIIMS, New Delhi. With over 30 years of experience in teaching and training orthopaedic

surgeons.<br></br>

Dr Aman Dua

Senior Consultant – Orthopaedics & Joint Replacement

• Complex primary Total Hip and Knee Replacment

• Revision Hip and Knee Replacement

• Realignment Osteotomies around the Knee

• Bone Banking and use of Bone Allograft in Joint Replacement Surgeries

<br></br>

Dr Dharmesh Khatri

Senior Consultant: Orthopedics and Joint Replacement

• Hip, Knee and shoulder replacement – Primary and revision


• High Tibial Corrective osteotomy

<br></br>

Dr. Chetan Giroti

Consultant Orthopedics

• Geriatric fractures & proximal femoral fractures

• Periarticular fractures where treatment is aimed at restoration of function, movement at the earliest

possible using AO concepts/technique.

• Deformity correction/limb lengthening/infection

<br></br>

Dr. K. K Mishra

Senior Consultant, Orthopaedics

• Shoulder Joint Replacement, Pelvic Acetabular Surgery

• Deformity Correction And Limb Lengthening, Failed Orthopaedic Correction

<br></br>

Dr. Krishna K Choudhary

Consultant Neurosurgeon

• Endoscopic brain and spine surgery.

• Skull base surgery.

• Spinal fixation.

• Congenital CNS anomalies.

• Microdiscectomy (Disc Surgery)

<br></br>

Dr R K Sharma VSM,MD
Director & HOD

Founder director ART Centre at Army Hospital ( R & R) Delhi and”

Southern Star “ART Centre at Command Hospital (SC),Pune </font>

</body> </head> </html>


NURSING HOME
<html>

<head>

<title>courses</title>

<body bgcolor="green">

<font size="4" color="black">

<p align="center">Nursing Home at Dr.Rahul hospital, is an unique one amongst all the available

Nursing Homes in Government Hospital .

<br></br>

<br></br>

It has two components

1) Medical Nursing Home . 2) Maternity Nursing Home.

Maternity Nursing Home is managed by Gynecologists headed by Dr.(Mrs) Puspa singh ,

Senior Specialist, in Gynecology with three units of Gynecology Department .

<br></br>

<br></br>

The Medical Nursing Home is managed by a totally dedicated static Medical Unit No. 7 headed by

Dr. A.K.Gadpayle, Consultant in Medicine ,Department of Medicine.

Medical Nursing Home is catering Medical Services to VVIP,

VIPs, Members of Parliaments, Ex Members of parliaments, supreme court,

High court judges and dependents ,Central Government Health Services (CGHS)beneficiaries

which includes Senior Beaurocrats, and other officers who are entitled to the Nursing Home as per
Govt. norms. Nursing home is having 50 beds out of which 12 beds are deluxe one having all

medical

facilities including central suction, oxygen, monitoring, and call bell

facilities.

All beds are air conditioned. Medical manpower is available 24 hrs physically in Nursing home.

30 beds are kept for medical illness and 20 beds are kept for surgery , pediatric etc department.</p>

</body>

</head>

</html>
FACILITY
<html>

<head>

<title>Facility</title>

<body bgcolor="cyan">

<font size="5" color="black">

<p align="center">

OPD & IPD services

<br></br>

24h hour emergency

<br></br>

24h Ambulance services

<br></br>

Blood bank & Bone bank

<br></br>

Preventive health check up

<br></br>

Diagonistic

<br></br>

Donate organ and kidney transplant

<br></br>

Dialysis </body> </head> </html>


CONTACT US
<html>

<head>

<title>contact</title>

<body bgcolor="cyan">

<font size="5" color="black">

<p align="center">

Find Us Here

Dr.Rahul Hospital

Chandragupt Marg, Chanakyapuri

New Delhi- 110 021, India

<br></br>

Phone no:-+91 8685890000

<br></br>

Email Id: VISHU11@gmail.com

</body>

</head>

</html>
CHAPTER 6
CONCLUSION
CONCLUSION
“My Hospital” describes everything in the project. The project is fully based on Hospital. The main
function of this project is that the Patients got the best treatment in this hospital.

Achievement and further scope


The website My Hospital covers all those Hospital questions which generally come into patients
mind. The main aim to develop this website provides complete information about Hospital and
provide best treatment to patients. This Website is developed for learning purpose. While
developing this web project we learn many things like how the website develops and how it
designed.
This website is a completely a static website. Now it can be develop as a dynamic website. It can
include calendar, clock, weather report & feedback forms by using ‘Java script’, ‘PHP’. The
database can also include in this website. This website is not supported by all the browsers.
BIBLIOGRAPHY
Website http://www.w3schools.com

http://www.htmlcodetutorial.co

Books

An Introduction to HTML, David R. Brooks, 1st Edition

Computer application-2 by Anuradha Aggarwal, pub. By mayor paperbacks, 5th

Revised Edition :2012

MIS, LM PRASAD & USHA PRASAD, Sultan Chand & Sons pub. 6th Edition Reprint

MIS, Waken A Headrest, Pub. By The McGraw_Hill Companies, Third Edition

Anda mungkin juga menyukai