-
Notifications
You must be signed in to change notification settings - Fork 2
/
customer care.php
40 lines (35 loc) · 1.62 KB
/
customer care.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php include ('connection.php') ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Customer Care</title>
<!--<link rel="stylesheet" href="newcss.css"> -->
<style>
.heading{
font-weight:bold;
color:#2E4372;
}
</style>
</head>
<body>
<div class='customer_care'>
<h3 style="text-align:center;color:#2E4372;"><u>Contact Us</u></h3>
<div class="contact">
<h3 style="color:#2E4372;"><u>Kolkata Branch</u></h3>
<p><span class="heading">Address - </span>Globsyn Buisness School, IBRAD buisness school, Keshtopur, Kolkata.</p>
<p><span class="heading">Tel - </span>033-456892/12</p>
<p><span class="heading">Email - </span>kolkatabranch@onlinebank.com</p>
<h3 style="color:#2E4372;"><u>Delhi Branch</u></h3>
<p><span class="heading">Address - </span>Globsyn Buisness School, Sector V-A , Malviya Nagar, Delhi.</p>
<p><span class="heading">Tel - </span>013-456856/32</p>
<p><span class="heading">Email - </span>delhibranch@onlinebank.com</p>
<h3 style="color:#2E4372;"><u>Bangalore Branch</u></h3>
<p><span class="heading">Address - </span>Globsyn Buisness School, Near City Center, Kamarthalli, Bangalore.</p>
<p><span class="heading">Tel - </span>022-456854/11</p>
<p><span class="heading">Email - </span>bangalorebranch@onlinebank.com</p>
</div>
</div>
<?php include('footer.php');?>
</body>
</html>