Vous êtes sur la page 1sur 81

A

MANAGEMENT INFORMATION SYSTEM


PROJECT REPORT

ON

“INDIAN BANK”
SUBMITTED BY: ENROLLMENT NO:

AKASH SHARMA 00296901715

ANSHUL 00396901715

DEVANSHU 00696901715

HIMANSHU BHATIA 01096901715

FOR THE PARTIAL FULFILLMENT OF DEGREE OF

BACHELOR OF BUSINESS ADMINISTRATION

UNDER THE SUPERVISION OF

Miss. SHRUTI

SANT HARI DASS COLLEGE OF HIGHER EDUCATION

BANI CAMP, NAJAFGARH

(Affiliated to Guru Gobind Singh Indraprastha University)


CERTIFICATE
This is to certify that this project report titled “INDIAN BANK” is work of
AKASH SHARMA, ANSHUL, DEVANSHU and HIMANSHU BHATIA
who carried out the research under my supervision. Certified further, that to
the best of my knowledge the work reported herein does not form art of any
other project report or dissertation on the basis of which a degree or award
was conferred on an earlier occasion on this or any other candidate.

SHRUTI

(PROJECT GUIDE)
PREFACE

As a part of the curriculum of Bachelor of Business Administration we


were asked to prepare a Project Report on any organization so as to give us
an exposure to practical management to get us familiar with various
activities taking place in the organization.

We have put our sincere efforts to accomplish our objectives within the
stipulated time. Despite all limitations, obstructs, hurdles and hindrances, we
have toiled and worked to our optimum potential to achieve desired goals.
And with the genuine interest, kind help and the guidance of our supervisor,
we are presenting this hand carved effort.
We tried our level best to conduct a research to gain a thorough knowledge
about the project on topic “INDIAN BANK”. We put the best of our efforts
and have also tried to be justice with available.

Deals with Introduction to Front end and Back end used includes
Introduction “INDIAN BANK.” contains Coding and Website created for
the same.
Describes the Conclusion to the report i.e. Importance of MIS in an
organization and of HTML in website building.
ACKNOWLEDGEMENT

We would like to give our heart-felt sincere-most thanks to our guides,


teachers and all lab faculty members who always stood as a guiding spirit
behind us and gave their invaluable supervision, guidance and support
without which this project wouldn’t have reached its final destination.
It’s a sheer pleasure for us to state with candidly that this entire project is a
heartily attempt to reach maximum accuracy, with the help of my Professor
Ms. Sangeeta
TABLE OF CONTENTS

s.no topics

1 Front End And Back End

2 HTML

3 MS ACCESS

4 BANKING SYSTEM

5 INTRODUCTION TO INDIAN BANK

6 WEBSITE AND ITS SOURCE

7 ADVANTAGES AND SCOPE OF THE


PROJECT

8 CONCLUSION

9 BIBLIOGRAPHY
FRONT END

AND

BACK END
FRONT END

INTRODUCTION TO HTML

HTML, which stands for Hyper Text Mark-up Language, is the predominant
mark-up language for web pages. A mark-up language is a set of mark-up
tags, and HTML uses mark-up 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 can also be used to include Cascading Style Sheets (CSS) to define
the appearance and lawet of text and other material. The W3C, maintainer of
both HTML and CSS standards, encourages the use of CSS over explicit
presentational mark-up.

HTML VERSION

2.0- It is supported by Mosaic browser does not support style sheet, scripting
or frames.
3.2- It is developed by w3c in early 1997. And it is supported by Netscape
browser.

4.0 -Transitional- It is developed by w3c in 1997. It provides basic CSS &


Scripting.

4.01- Transitional/strict/frameset- It supports CSS, fonts etc.

BASIC HTML COMMANDS


This section covers some basic HTML commands and explains the steps
involved in preparing a document for viewing via the World Wide Web.

Basic steps: using tags

HTML uses tags to communicate to the client (browser) how to display text
and images. Tags are contained in < > symbols. In most cases we start
with the beginning tag, put in the word or words that will be affected by
this tag, and at the end of the string of word(s), we place a closing tag.

For example, to create a title for a document we would do the following:

<Title>My First HTML Document</title>


The closing tag normally contains a "/" before the directive to indicate the
termination of the action.

HTML tags are not case-sensitive, although URLs generally are. In most
cases (with the exception of preformatted text) HTML collapses many
spaces to one space and does not read blank lines.
THE HTML TAG
Although not currently required by all clients, the <html> tag signals the
point where text should start being interpreted as HTML code. It's probably
a good idea to include it in all our documents now, so we don't have to go
back to our files and add it later.
The <html> tag is usually placed on the first line of our document. At the
end of our document we should close with the </html> tag.

THE HEAD TAG


Just like the header of a memo, the head of an HTML document contains
special information, like its title. The head of a document is demarcated by
<head> and </head> respectively.

For the purpose, only the title tag, below, should be included in the
document head. A typical head section might look like:-

<Html>
<Head>
<Title>My First HTML Document</title>
</head>

TITLE TAG

A title tag allows us to specify a Document Title in our browser window.


When people make hotlists, this title is what they see in their list after
they add our document. The format is:
<Title>My First HTML Document</title>
Remember, the title usually doesn't appear in the document itself, but in a
title box or bar at the top of the window.
THE BODY TAG
Like we might expect, the body tags <body> and </body> define the
beginning and end of the bulk of our document. All our text, images, and
links will be in the body of the document.

The body should start after the head. A typical page might begin like

<Html>
<Head>
<Title>My First HTML Document</title>
</head>
<Body>

HEADER TAG
There are up to six levels of headers that can be used in our document, h1
through h6. Header 1 is the largest header and they get progressively smaller
through header 6. Below are each of the six headers and how they usually
appear in relation to one another.

<h1>This is a header 1 tag</h1>

This is a header 1 tag


<h2>This is a header 2 tag</h2>

This is a header 2 tag


<h3>This is a header 3 tag</h3>
This is a header 3 tag
<h4>This is a header 4 tag</h4>

This is a header 4 tag


<h5>This is a header 5 tag</h5>

This is a header 5 tag


<h6>This is a header 6 tag</h6>

This is a header 6 tag

Headers, as we notice, not only vary in size, they are also bold and have a
blank line inserted before and after them. It's important to use headers only
for headings, not just to make text bold (we cover the bold tag later).

EXAMPLES

Header of the HTML document :< head>...</head>. Usually the title should
be included in the head, for example:

<Head>
<Title>the title</title>
</head>

Headings: HTML headings are defined with the <h1> to <h6> tags:

<h1>Heading1</h1>
<h2>Heading2</h2>
<h3>Heading3</h3>
<h4>Heading4</h4>
<h5>Heading5</h5>
<h6>Heading6</h6>

PARAGRAPH TAG
In HTML, a paragraph tag <p> should be put at the end of every paragraph
of "normal" text (normal being defined as not already having a tag
associated with it).

<p> causes a line break and adds a trailing blank line

<br> causes a line break with no trailing blank line

PREFORMATTING TAG

The preformatted text tag allows us to include text in our document that
normally remains in a fixed-width font and retains the spaces, lines, and tabs
of our source document. In other words, it leaves our text as it appears
initially or just as we typed it in. Most clients collapse multiple spaces into
one space; even tabs are collapsed to one space. The only way to circumvent
this is to use the preformatted tag. Visually, preformatted text looks like a
courier font.

<pre> this is an example of a preformatted text tag

</pre>

BOLD FACE AND ITALICS


We can add emphasis to text by using the boldface and italic tags or the
emphasis and strong tags. There is an underline tag as well, but most people
don't use it since text that is linked is often underlined. The potential for
confusion and the archaic nature of underlining in general make it a poor
marker for emphasis.

When using these tags, we usually cannot (and probably should not) have
text that is both boldface and italics; the last tag encountered is usually the
tag that is displayed. For example, if we had a boldface tag followed
immediately by an italic tag, the tagged word would appear in italics.

PHYSICAL TAGS

This is a <b> boldface </b> tag.

This is how boldfacing appears.

This is an <i> italic </i> tag.

This is how italics appear.

CENTER TAG

We can center text, images, and headings with the center tag:

<center>This is a centered sentence</center>

This is a centered sentence.

The center tag automatically inserts a line break after the closing center tag.
IMAGE TAG

We can add images with image tag:

<img src=”source if the image”>


BACK END

MICROSOFT ACCESS
Microsoft Office Access, previously known as Microsoft Access, is a
relational database management system from Microsoft that combines the
relational Microsoft Jet Database Engine with a graphical user interface and
software-development tools. It is a member of the Microsoft Office suite of
applications, included in the Professional and higher editions or sold
separately. In May 12 2010, the current version of Microsoft Access 2010
was released by Microsoft in Office 2010; Microsoft Office Access 2007
was the prior version.

MS Access stores data in its own format based on the Access Jet Database
Engine. It can also import or link directly to data stored in other applications
and databases.

Software developers and data architects can use Microsoft Access to develop
application software, and "power users" can use it to build simple
applications. Like other Office applications, Access is supported by Visual
Basic for Applications, an object-oriented programming language that can
reference a variety of objects including DAO (Data Access Objects),
ActiveX Data Objects, and many other ActiveX components.

Microsoft Access has been around for some time, yet people often still ask
what is Microsoft Access and what does it do? Microsoft Access is a part of
the Microsoft Office Suite.
Microsoft Access has the look and feel of other Microsoft Office products,
including its lawet and navigational aspects. That is where the similarity
ends. Microsoft Access is a database and, more specifically, a relational
database. This will be explained in more detail later.

Access has an .mdb extension by default, whereas Microsoft Word has the
.doc extension. Although this has changed in Access 2007 where the
extension is now an accdb extension. Early versions of Access cannot read
accdb extensions but Microsoft Access 2007 can read and change earlier
versions of Access.

What is Microsoft Access made up of?


The Microsoft Access Database is made up of 7 major components:

 Tables;
 Relationships;
 Queries;
 Forms;
 Reports;
 Modules.

The following gives an overview of each component.

Tables

The tables are the backbone and the storage container of the data entered
into the database. If the tables are not set up correctly, with the correct
relationships, then the database may be slow. Queries, forms, etc. are usually
based on a table.

The tables that contain data look a bit like a table in Microsoft® Word or a
Microsoft Excel Spreadsheet, when opened. They have columns and rows as
does a table in Microsoft Word and an Excel worksheet. Each of the columns
will have a field name at the top and each of the rows will represent a record.

As an example:

Relationships

Relationships are the bonds we build between the tables. They join tables
that have associated elements. To do this there is a field in each table, which
is linked to each other, and have the same values.

Queries

Are the means of manipulating the data to display in a form or a report.


Queries can sort, calculate, group, filter, join tables, update data, delete data,
etc. Their power is immense.

The Microsoft Access database query language is SQL (Structured Query


Language). The need to know SQL is not required in the early stages of
learning Access. Microsoft Access writes the SQL for we, after we tell it
what we want, in the Design view of the queries window.
Forms

Forms are the primary interface through which the users of the database
enter data. The person who enters the data will interact with forms regularly.
The programmer can set the forms to show only the data required. By using
queries, properties, macros and VBA (Visual Basic for Applications), the
ability to add, edit and delete data can also be set. Forms can be set up and
developed to reflect the use they will be required for.

Reports

Reports are the results of the manipulation of the data we have entered into
the database. Unlike forms, they cannot be edited. Reports are intended to be
used to output data to another device or application, i.e. printer, fax,
Microsoft Word or Microsoft Excel.

Modules

Modules are the basis of the programming language that supports Microsoft
Access, The module window is where we can write and store Visual Basic
for Applications (VBA). Advanced users of Microsoft® Access tend to use
VBA instead of Macros. If we would like to learn VBA, I have a simple step
by step lessons.

Limitations:-

The total size of a database file (.MDB) is limited only by the storage
capacity of our PC (Microsoft quote the maximum database size of 2
Gigabyte (2000 Megabytes)). These figures are for pre 2007 versions of
Microsoft Access.
Very few realistic limitations exist, though here are some parameters:

Maximum table size 1 Gb


No. if fields in a record or table 255
No. of indexes in a table or a record 32
Ni. of fields in an index 10
No. of tables in a query 32
Maximum size of a form or report 22"
Characters in a memo field 64,000
MDB size 2 Gb
Max Integer 2,147,483,648
Concurrent Users 255
No. of characters in object names 64

What is Microsoft Access as compared to a Relational Database

The relational database was invented by E. F. Codd at IBM in 1970.The


power of a relational database is the ability to bring a lot of information
together quickly. These are the rules of a relational database:

 No duplicate data (except linked fields - explained shortly)


 Information is broken into categories
 Data is broken down to the smallest useable bit. For example: a
person’s name would be broken down into 4 seperate sections title,
first name, middle name and last name.
 Each record has a unique identifier, this distinguishes a particular
record from any other record

Primary Key - Unique Identifier


An important part of determining the fields for each table is deciding which
field (if any) is suitable as the primary key.

The power of a relational database is the ability to bring a lot of information


together quickly. For this to work efficiently and effectively, Microsoft
Access needs to be able to identify unique records. For this reason, one field
or a set of fields needs to be unique. This can be a unique identification
number such as a Medicare number, Employee ID number, Pension number,
etc.:

 A primary key cannot contain duplicate values, e.g. a person’s last


name is not suitable as a primary key as there is often more than one
person with the same last name;
 A primary key cannot contain null values, therefore a field such as a
phone number is not suitable, as we may not know the person’s phone
number when we first enter them into the database;
 Also, if the information contained in the Primary Key is likely to be
altered, then it is best to avoid this field as well.

If a unique identifier cannot be identified (which is more than likely), we can


add a field, which will automatically increase sequentially by one, thus
providing the record with a unique identifier.

Foreign Keys

The Foreign Key is the field that links a related table to the main table. As an
example, in the library database, a borrower may appear many times in the
‘Loan’ table, as a borrower may borrow many books. A book may also occur
many times in the ‘Loan’ table as a book can be borrowed many times.
Therefore, the loan table would contain many links to a particular borrower
and many links to a particular book, but each loan record would relate to
only one book and one borrower.

These fields are known as foreign keys (FK). Note: that only the ID field is
kept in the loan table, no other information is needed from the borrower
table or the book table. By setting up relationships between the tables,
Microsoft Access knows which foreign key belongs to which primary key
(unique identifier) and can pull the information from the relevant tables
when needed.

Uses of MS ACCESS:-

Microsoft Access is used to make databases.

When reviewing Microsoft Access in the real world, it should be understood


how it is used with other products. An all-Access solution may have
Microsoft Access Forms and Reports managing Microsoft Access tables.
However, Microsoft Access may be used only as the 'front-end', using
another product for the 'back-end' tables, such as Microsoft SQL Server and
non-Microsoft products such as Oracle. Similarly, some applications will
only use the Microsoft Access tables and use another product as a front-end,
such as Visual Basic or ASP.NET. Microsoft Access may be only part of the
solution in more complex applications, where it may be integrated with other
technologies such as Microsoft Excel, Microsoft Outlook or ActiveX Data
Objects.

Access tables support a variety of standard field types, indices, and


referential integrity. Access also includes a query interface, forms to display
and enter data, and reports for printing. Microsoft Access is popular among
non-programmers and professional developers alike. Non-programmers can
create visually pleasing and relatively advanced solutions with very little or
no code. It is also easy to place a database on a network and have multiple
users share and update data without overwriting each other's work Microsoft
Access offers also the ability for programmers to create solutions using the
programming language Visual Basic for Applications (VBA), which is
similar to Visual Basic 6.0 (VB6) and used throughout the Microsoft Office
programs such as Excel, Word, Outlook and PowerPoint. Most VB6 code,
including the use of Windows API calls, can be used in VBA.

Microsoft Access is designed to scale to support more data and users by


linking to multiple Access databases or using a back-end database like
Microsoft SQL Server. Microsoft Access's role in web development prior to
version 2010 is limited. User interface features of Access, such as forms and
reports, only work in Windows. In versions 2000 through 2003 an Access
object type called Data Access Pages created publishable web pages. Data
Access Pages are no longer supported. Access 2010 allows databases to be
published to Share Point 2010 web sites running Access Services. These

Microsoft offers a runtime version of Microsoft Access 2007 for download.


This allows people to create Access solutions and distribute it for use by
non-Microsoft Access owners (similar to the way DLLs or EXEs are
distributed). Unlike the regular version of Access, the runtime version allows
users to use the Access application but they cannot use its design surfaces.
Microsoft also offers developer extensions for download to help distribute
Access applications, create database templates, and integrate source code
control with Microsoft Visual SourceSafe.

Features

Users can create tables, queries, forms and reports, and connect them
together with macros. Advanced users can use VBA to write rich solutions
with advanced data manipulation and user control.

The original concept of Access was for end users to be able to "access" data
from any source. Other uses include: the import and export of data to many
formats including Excel, SQL Server, Oracle, etc. It also has the ability to
link to data in its existing location and use it for viewing, querying, editing,
and reporting. This allows the existing data to change while ensuring that
Access uses the latest data. It can perform heterogeneous joins between data
sets stored across different platforms. Access is often used by people
downloading data from enterprise level databases for manipulation, analysis,
and reporting locally.

The desktop editions of Microsoft SQL Server can be used with Access as an
alternative to the Jet Database Engine. This support started with MSDE
(Microsoft SQL Server Desktop Engine), a scaled down version of
Microsoft SQL Server 2000, and continues with the SQL Server Express
versions of SQL Server 2005 and 2008.

Microsoft Access is a file server-based database. Unlike client–server


relational database management systems (RDBMS), Microsoft Access does
not implement database triggers, stored procedures, or transaction logging.
Access 2010 includes table-level triggers and stored procedures built into the
ACE data engine. Thus a Client-server database system is not a requirement
for using stored procedures or table triggers with Access 2010. Tables,
queries, Forms, reports and Macros can now be developed specifically for
web base application in Access 2010. Integration with Microsoft Share Point
2010 is also highly improved.

Access Services and Web database

ASP.NET web forms can query an MS Access database, retrieve records and
display them on the browser.

Share Point Server 2010 via Access Services allows for Access 2010
databases to be published to Share Point, thus enabling multiple users to
interact with the database application from any standards-compliant Web
browser. Access Web databases published to Share Point Server can use
standard objects such as tables, queries, forms, and reports. Access Services
stores those objects in Share Point.

Import or Link sources

Microsoft Access can also import or link directly to data stored in other
applications and databases. Microsoft Office Access 2007 and newer can
import from or link to:

 Microsoft Access
 Excel
 Share Point lists
 text
 XML
 ODBC-compliant data containers, including:
o Microsoft SQL Server
o Oracle

Microsoft Access: History

Microsoft Access is a full service database program that has been in


development since 1992. While it is not as robust as other corporate database
platforms, its usability makes it ideal for organizing small data sets, making
it a great choice for personal and small business use. Another advantage is
that it is quite inexpensive, making it competitive comparable to the heavy
duty competition. Compared to most of the other programs in the Microsoft
Office suite, Access is one of the lesser used ones, although it does have its
applications in certain business environments.

The first version of Access was released in late 1992. The software worked
well with relatively small data sets, but when the amount of information
started to get much larger, data corruption and slowness became a serious
issue. Part of the problem was the rapidly increasing amounts of computer
memory becoming available at the time - the strength of the hardware
available outpaced the skill of software developers, and customer
expectations were as such difficult to predict.

As the program continued to improve, more features were added. Access


became a development platform for relatively small scale programs, making
it a useful tool even for programmers, amateur or otherwise, because of its
usage as a launching platform for small but handy applications.
The changing needs of businesses rapidly made older versions of Access
obsolete. The data stored in older versions of the program cannot be read by
versions of the software released after Access 97. Most databases were
converted over the years to newer versions to prevent Year 2000 related bugs
from surfacing.

The various graphical wizards are very useful for newer users to develop
database queries. So long as there isn't much data involved and there aren't
many simultaneous users, Access is a good business solution. If the data
becomes more important later on, it is possible to use the Access "upsizing"
feature to upgrade it to the Microsoft SQL Server system.

Version History

 1992 - Access 1.1


 1993 - Access 2.0
 1995 - Access 95
 1997 - Access 97
 1999 - Access 2000
 2001 - Access 2002
 2003 - Access 2003
 2007 - Access 2007
BANKING
SYSTEM
BANKING SYSTEM

Banking in India:-

India has a well developed Banking system. The banking industry originated
in India in the 18th century and since then it has undergone significant
number of changes. The commercial banking industry in India over the past
few decades has been revolutionized by a number of factors such as
independence, nationalization, deregulation, rise of the Internet, etc.The
commercial banking structure in India consists of Scheduled Banks and
Unscheduled Banks.
In the past the banks did not find any attraction in the Indian economy
because of the low level of economic activities and little business prospects.
Today we find positive changes in the National business development policy.
Earlier, the money lenders had a strong hold over the rural population which
resulted in exploitation of small and marginal savers. The private sector
banks failed in serving the society. This resulted in the nationalization of 14
commercial banks in 1969. Nationalization of commercial banks paved ways
for the development of Indian economy and channelized financial resources
for the upliftment of weaker sections of the society. The passage of financial
modernization legislation by Congress in 1999 removed barriers, allowing
banks to expand product offerings, while the potential of the Internet as a
sales, marketing and delivery tool, widened the avenues to sell and deliver
these products. The main products of the commercial banking industry-
insurance, securities, mortgages, mutual funds and consumer credit-have all
benefited from these changes. This report will examine the extent to which
increased product sales have influenced overall bank assets and how
commercial banks' increased market share in each of these products areas
over the next five years will raise overall bank income and assets.
Currently (2009), banking industry in India is generally fairly mature in
terms of supply, product range and reach-even though reaches in rural India
still remains a challenge for the private sector and foreign banks. In terms of
quality of assets and capital adequacy, Indian banks are considered to have
clean, strong and transparent balance sheets relative to other banks in
comparable economies in its region. The Reserve Bank of India is an
autonomous body, with minimal pressure from the government. The stated
policy of the Bank on the Indian Rupee is to manage volatility but without
any fixed exchange rate-and this has mostly been true.
With the growth in the Indian economy expected to be strong for quite some
time-especially in its services sector-the demand for banking services,
especially retail banking, mortgages and investment services are expected to
be strong. One may also expect mergers and acquisitions, takeovers, and
asset sales.

In these five decades since independence, banking in India has evolved


through four distinct phases:

Foundation phase can be considered to cover 1950s and 1960s till the
nationalization of banks in 1969. The focus during this period was to lay the
foundation for a sound banking system in the country. As a result the phase
witnessed the development of necessary legislative framework for
facilitating re-organization and consolidation of the banking system, for
meeting the requirement of Indian economy.
Expansion phase had begun in mid-60s but gained momentum after
nationalization of banks and continued till 1984. A determined effort was
made to make banking facilities available to the masses. Branch network of
the banks was widened at a very fast pace covering the rural and semi-urban
population, which had no access to banking hitherto. Most importantly,
credit flows were guided towards the priority sectors. However this
weakened the lines of supervision and affected the quality of assets of banks
and pressurized their profitability and brought competitive efficiency of the
system at low ebb.

Reforms phase: The macro-economic crisis faced by the country in 1991


paved the way for extensive financial sector reforms which brought
deregulation of interest rates, more competition, technological changes,
prudential guidelines on asset classification and income recognition, capital
adequacy, autonomy packages etc.
INTRODUCTION
TO
INDIAN BANK
INDIAN BANK

HISTORY OF INDIAN BANK

 A premier bank owned by the Government of India

 Established on 15th August 1907 as part of the Swadeshi movement

 Serving the nation with a team of over 19000 dedicated staff

 Total Business crossed Rs.1,67,980 Crores as on 30.09.2011

 Operating Profit increased to Rs. 2747.35 Crores as on 31.03.2011

 Net Profit increased to Rs.1554.99 Crores as on 31.03.2011

 Core Banking Solution(CBS) in all 1801 branches


International Presence:-
 Overseas branches in Singapore and Colombo including a Foreign
Currency Banking Unit at Colombo

 240 Overseas Correspondent banks in 70 countries

 Diversified banking activities - 3 Subsidiary companies


Vision & Mission

Corporate Vision:-

To emerge as a strong vibrant Bank through synchronization of the human,


financial and technological resources.

Corporate Mission:-

 To put in the place effective Risk Management and Internal Control


Systems.
 To adopt and operationalise high –level technology standards.
 To strive to achieve excellence in Customer Service.
 To achieve the highest standards of transparency and accountability in
the conduct of banking business.
 To adopt professional approach in effectively managing financial as
well as non – financial risks.
 To maximise profitability and profits of the bank with due compliance
of prudential guidelines.
OBJECTIVES OF THE WEBSITE

The objective of the project is as follows:-

 To provide 24x7 online banking services.

 Analysis of reports and information for policy making.

 To increase customer market of Indian bank.

 To motivate and pursuit the customers to invest.

Rural Development

 Pioneer in introducing Self Help Groups and Financial Inclusion


Project in the country
 Award winner for Excellence in Agricultural Lending from
Honourable Union Minister for Finance
 Best Performer Award for Micro-Finance activities in Tamil Nadu and
Union Territory of Puducherry from NABARD
 Established 7 specialized exclusive Microfinance branches called
"Microsate" across the country to cater the needs of Urban poor
through SHG (Self Help Group)/JLG (Joint Liability Group) concepts
 A special window for Micro finance viz., Micro Credit Kendras are
functioning in 44 Rural/Semi Urban branches
 A pioneer in introducing the latest technology in Banking
 100% Core Banking Solution (CBS) Branches
 100% Business Computerisation
 1059 Automated Teller Machines (ATM)
 24 x 7 Service through 57000 ATMs under shared network
 Internet and Tele Banking services to all Core Banking customers
 E-payment facility for corporate customers
 Cash Management Services
 Depository Services
 Reuter Screen, Telerate, Reuter Monitors, Dealing System provided at
Overseas Branch, Chennai
 I B Credit Card Launched
INDIAN BANK
WEBSITE AND
ITS SOURCE
INDIAN BANK WEBSITE AND ITS SOURCE

INDIAN BANK HOMEPAGE


INDIAN BANK HOME PAGE

<Html>

<head>

<title> ::INDIAN BANK:: Taking banking technology to common man


</title>

</head>

<h1><i> INDIAN BANK (Taking banking technology to common man)

</i></h1>

<body align="center" bgcolor = "green">

<h1><hr color="RED"><a href=homepage.htm> Enter indian bank


homepage >>> </hr> </a></h1>

<img src="welcome.jpg">

<hr> Indian banking singapore </hr>

<hr> Pallavan grama bank etc...</hr>

<hr> Indian bank merchant banking </hr>

</body>

</html>
WELCOME TO INDIAN BANK WEBSITE
WELCOME TO INDIAN BANK WEBSITE

<html>

<head>

<title> ::INDIAN BANK:: Taking banking technology to common man


</title>

</head>

<img src = "logo.jpg"

<body>

<h3><i><th><a href ="about us.htm">About us </a><th>


&nbsp&nbsp&nbsp&nbsp <a href="product.htm"> Products </a> <th>
&nbsp&nbsp&nbsp&nbsp <a href = "loan.htm"> loans </a><th>
&nbsp&nbsp&nbsp&nbsp <a href = "services.htm"> services </a><th>

&nbsp&nbsp&nbsp&nbsp <a href = "contact.htm">contact </a><th>


&nbsp&nbsp&nbsp&nbsp <a href ="accounts.htm">account details </a>
<th> &nbsp&nbsp&nbsp&nbsp <a href="customer.htm">customer's
information</a> </th></h3>

<h3><th>&nbsp&nbsp&nbsp&nbsp <a href ="employee.xls">


EmPloyee details</a><th> &nbsp&nbsp&nbsp&nbsp <a href =
"branches.xls">branches detail </a><th> &nbsp&nbsp&nbsp&nbsp <a
href = "finance.xls">financial profit </a></th></h3>

<img src="welcome.jpg">
<img src = "logo.jpg"

<h3><i><a href = "indian bank.htm"> THANKS FOR VISITING(go to


home>>>) </a></i></h3>

</body>

</html>
ABOUT US
ABOUT US

<Html>

<head>

<title> ::INDIAN BANK:: Taking banking technology to common man


</title>

<b><h2><i><body bgcolor="white">

<img src = "logo.jpg"<h1><caption> ABOUT US</caption></h1>

1. A premier bank owned by the Government of India<br>

2. Established on 15th August 1907 as part of the Swadeshi


movement<br>

3. Serving the nation with a team of over 19000 dedicated staff<br>

4. Total Business crossed Rs.1,67,980 Crores as on 30.09.2010<br>

5. Operating Profit increased to Rs. 2747.35 Crores as on


31.03.2010<br>

6. Net Profit increased to Rs.1554.99 Crores as on 31.03.2010<br>

7. Core Banking Solution(CBS) in all 1801 branches<br>

<img src="welcome. jpg"> </body></i></h2></b>

</html>
INDIAN BANK PRODUCTS
INDIAN BANK PRODUCTS

<html>

<head>

<title> ::INDIAN BANK:: Taking banking technology to common man


</title>

</head>

<b><h1><caption> PRODUCTS </caption><h1></b>

<img src = "logo.jpg"

<body>

<h3><i><th><a href =page1.htm>MCA PAYMENT</a>

&nbsp<th>

<a href = page2.htm> AGRICULTURAL GODOWNS AND COLD


STORAGE</a>

&nbsp<img src="welcome.jpg">

<img src = "logo.jpg"

</th></i></h3>

</body> </html>
MINISTRY OF CORPORATE AFFAIRS PAYMENT
AGRICULTURAL PRODUCTS
INDIAN BANK LOANS
INDIAN BANK LOAN

<Html>

<Head>

<title> ::INDIAN BANK:: Taking banking technology to common man


</title>

</head>

<h1><caption> LOANS </CAPTION></h1>

<img src = "logo.jpg"

<body>

<h3><i><th><a href ="page3.htm">HOME LOAN</a>

&nbsp&nbsp&nbsp&nbsp <th>

<a href = "page4.htm"> VEHICLE LOAN </a>

&nbsp&nbsp&nbsp&nbsp <th>

<a href="page5.htm">EDUCATIONAL LOAN</a>

&nbsp&nbsp&nbsp&nbsp<th>
<a href="page6.htm">KISAN CREDIT LOAN</a>

</th> </h3></i>

<img src="welcome. jpg">

<img src = "logo.jpg"

</body>

</html>
HOME LOAN
VEHICLE LOAN
EDUCATIONAL LOAN
KISAN CREDIT LOAN
INDIAN BANK SERVICES
INDIAN BANK SERVICES

<Html>

<head>

<title> ::INDIAN BANK:: Taking banking technology to common man


</title>

</head>

<h1><caption> LOANS </CAPTION></h1>

<img src = "logo.jpg"

<body>

<h3><i><th><a href ="page7.htm">CREDIT CARDS</a>

&nbsp&nbsp&nbsp&nbsp <th>

<a href = "page8.htm"> MOBILE BANKING</a>

&nbsp&nbsp&nbsp&nbsp <th>

<a href="page9.htm">DEBIT CARDS</a>

&nbsp&nbsp&nbsp&nbsp<th>

<a href="page10.htm">DP SERVICES</a>


</th>

</h3>

</i>

<img src="welcome.jpg">

<img src = "logo.jpg"

</body>

</html>
CREDIT CARDS
MOBILE BANKING
ATM/DEBIT CARDS
DP SERVICES
INDIAN BANK CONTACT
INDIAN BANK CONTACT

<html>

<head>

<title> ::INDIAN BANK:: Taking banking technology to common man


</title>

<h1><caption align="center"> CONTACTS </caption></h1>

<img src = "logo.jpg"

<h3><body align= "center">

Head Office - Postal Address<br>

PB No.1384,<br>

66, Rajaji Salai,<br>

Chennai 600 001,<br>

Tamil Nadu <br>

Head Office - Phone Numbers<br>

044 25233231 <br>


FAX <br>

044 25231278 <br>

Contact Details of Branches <br>

Branch contact details are given at ' Branch Network ' section » <br>

National Toll Free No.<br>

1800 425 1400 <br>

National Toll Free No. ( for ATM only ) <br>

1800 425 4422 <br>

functioning all 24 hours 365 days to attend the queries received from our
customers<br>

<img src="welcome.jpg">

<img src = "logo.jpg"

</body></h3>

</html>
TYPES OF ACCOUNTS
TYPES OF ACCOUNT

<html>

<head>

<title> ::INDIAN BANK:: Taking banking technology to common man

</title>

</head>

<h1><caption> ACCOUNT DETAIL'S </caption></h1>

<img src = "logo.jpg"

<body>

<h3><i>

<th><a href ="page11.htm">RECCURING DEPOSIT ACCOUNT</a>

&nbsp&nbsp&nbsp&nbsp <th>

<a href = "page12.htm"> CURRENT ACCOUNT</a>

&nbsp&nbsp&nbsp&nbsp <th>

<a href="page13.htm">FIXED DEPOSIT ACCOUNT</a>


&nbsp&nbsp&nbsp&nbsp<th>

<a href="page14.htm">SAVING ACCOUNT</a>

</th> </h3></i>

<img src="welcome.jpg">

<img src = "logo.jpg"

</body>

</html>
RECCURING DEPOSIT ACCOUNT
CURRENT ACCOUNT
FIXED DEPOSIT ACCOUNT
SAVING ACCOUNT
CUSTOMER INFORMATION
CUSTOMER INFORMATION

<html>

<head>

<title> ::INDIAN BANK:: Taking banking technology to common man


</title>

</head>

<h1><caption> CUSTOMER INFORMATION </caption></h1>

<img src = "logo.jpg">

<body>

<form>

<h2>customer name:</h2>

<input type="text" name="Customer name">

<br>

<h2>Account no.:</h2>

<input type="text" name="Account no."><br>


<input type="submit" value="send"><br>

</form>

<img src="welcome.jpg">

<img src = "logo.jpg"

</body>

</html>
EMPLOYEE’S DETAILS
FINANCIAL PROFIT FOR DIFFERENT YEARS
DETAILS OF BRANCHES IN DELHI
ADVANTAGES OF THE PROJECT

 Providing full information about the bank.


 It provides the information about the services given by the bank.
 It is used for online banking purpose also so that customer can make
online payment.
 We can have 24X7 transactions.
 It provides all the loans provided by the bank to the customers

FUTURE SCOPE OF PROJECT

 In future also these websites are useful in providing accurate and


updated information to its users
 It helps in future also to get adequate information which is
required.

LIMITATIONS OF THE WEBSITE

 The lawet of the w ebsite is too simple.


 It doesn’t provide information regarding credit card facility.
 The lawet of the website is too simple.
 It doesn’t provide information regarding credit card
CONCLUSION

It is concluded that MIS is always management oriented and keeps in view


every level of management and gets the desired information. It refers to how
different components (sub systems) are actually tied up together.
e.g.: different departments of organization linked together.
Effective MIS helps the management to know deviations of actual
performance from pre-set targets and control things. It’s important for
increasing efficiency.
MIS provides updated results of various departments to management and is
highly computerized so it provides accurate results. It also adds to the
intelligence, alertness, awareness of managers by providing them
information in the form of progress and review reports of an ongoing
activity.

IMPORTANCE OF HTML :-

HTML has been used for websites ever since the internet came into
existence. Every developer who wants to build highly interactive
applications does not jump on complicated programming languages for
websites. They instead start on simpler programming languages and HTML
is one among them.

It can be even said that without HTML, the internet that everyone knows
today will not be possible. The simplicity and lightweight design that could
be learned from HTML has created simple websites but still considered
interactive in its day.
HTML, could be used when the applications needed is simplified. But this
does not means that HTML is not geared towards highly interactive
applications. The advantages of HTML is that it could be effectively adapt to
every online programming language which means developers could easily
expand their applications with the use of HTML
BIBLIOGRAPHY

There was immense need and flow of the information while preparing the
project report, which was gathered through various sources, mentioned
below:

 Management Information System – LM Prasad,(2008), Sultan Chand

WEBSITES:-

 http:// www.google.com

 http://www.wickipedia.com

 http://www.indianbank.in

Vous aimerez peut-être aussi