-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathContactUs.php
52 lines (47 loc) · 1.34 KB
/
ContactUs.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
<?php
include('sessionhandler.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>e-ELECTION</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<?php include('Header.html');?>
<div class="container">
<div class="row">
<div class="col-sm-12">
<center><h2 style="color:gold;">Get In Touch</h2></center>
<p>
Please call us or email us now and one of our representatives will contact you shortly. We welcome all of your comments and queries!
</p>
</div>
</div>
<br><br>
<div class="row">
<div class="col-sm-12">
<h4>Phone Numbers</h4><br>
Raaj Raisinghani : 9172022777<br>
Suraj Pawar : 9702089680<br>
</div>
</div>
<br>
<div class="row">
<div class="col-sm-12">
<h4>Email Address</h4><br>
</div>
</div>
</div>
</div>
<footer class="footer navbar-fixed-bottom">
<?php include('Footer.html');?>
</footer>
</body>
</html>