-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcontact.php
65 lines (60 loc) · 2.35 KB
/
contact.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
include "header.php";
include "navbar.php";
?>
<!DOCTYPE html>
<html style="background-image: url('images/contact.jpg') no-repeat center center fixed;">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="contact_style.css">
</head>
<body>
<div class="flex-container-background" >
<div class="flex-container-heading" style="background-image: url('images/contact.jpg') no-repeat center center fixed;">
<h1 id="contact">Contact Us</h1>
</div>
<div class="flex-container" style="border-bottom: 0;
border-top-left-radius: 10px;
border-top-right-radius: 10px;">
<div class="flex-item">
<h1 id="sub-contact">Corporate Headquarters</h1>
<p id="sub-contact">
Corporate HQ<br>Dolphin Bank<br>
1985 Cedar Bridge Ave, Suite 3<br>
Lakewood, NY 08701
</p>
</div>
<div class="flex-item">
<h1 id="sub-contact">General Contact</h1>
<p id="sub-contact">
Toll-Free: 888-968-6822<br>
Phone: 732-367-5505<br>
Fax: 732-367-2313<br>
Email: office@​dolphinbank.com
</p>
</div>
</div>
<div class="flex-container" style="border-top: 0;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;">
<div class="flex-item">
<h1 id="sub-contact">Customer Care (24x7)</h1>
<p id="sub-contact">
Toll-Free: 888-966-6992<br>
Phone: 732-666-5555<br>
Email: care@​dolphinbank.com
</p>
</div>
<div class="flex-item">
<h1 id="sub-contact">Live Chat</h1>
<p id="sub-contact">
Download our app and live chat<br>
with our customer care !<br>
App available on Google Play<br>
and iPhone-AppStore.
</p>
</div>
</div>
</div>
</body>
</html>