-
Notifications
You must be signed in to change notification settings - Fork 13
/
contact.php
90 lines (62 loc) · 2.25 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
include "header.php";
include "navbar.php";
?>
<!DOCTYPE html>
<html>
<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">
<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>NAMMA BANK<br>
BANGALORE <br>
KARNATAKA </p>
</div>
<div class="flex-item">
<h1 id="sub-contact">General Contact</h1>
<p id="sub-contact">
Toll-Free: 8888888888<br>
Phone: +5555555555<br>
<!--Fax: 123-123-123<br>-->
Email: [email protected]
</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: 9999999999<br>
Phone: +1234567890<br>
Email: [email protected]
</p>
</div>
<div class="flex-item">
<h1 id="sub-contact"> CUSTOMERS IN CASE OF ANY QUERIS </h1>
<p id="sub-contact">
PLEASE CONTACT US ! <br>
WITH OUR CUSTOMER CARE !<br>
WE ARE AVAILABLE 24 X 7 THROUGHOUT THE YEAR !!!
<br>
<br>
<p id="sub-contact">
If you need help or want to know about this project contact to the above email .
</p>
</div>
</div>
</div>
</body>
</html>