-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcontactus.php
113 lines (91 loc) · 3.56 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!doctype html>
<html lang="en">
<head>
<title>page title</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--styles css-->
<?php include_once "styles.php"; ?>
<!--styles css-->
</head>
<body>
<!--navbar-->
<?php include_once "header.php"; ?>
<!--end of navbar-->
<div class="container-fluid my-4 p-0">
<div class="row">
<!--left col --> <div class="col-md-1"></div> <!--left col -->
<div class="col-md-10 ">
<!-- start your code from here-->
<!-- top Recruiters -->
<div class="container-fluid my-2 bg-white p-2 ">
<h3 class="pt-2">Contacts Us!</h3><hr>
<h5>Thank you for visiting My job my town!</h5>
<p>Got questions? We.re here to help! Choose the method that works best for you. Try our Quick Help Links or send us an email. We look forward to hearing from you.</p>
<div class="row">
<div class="col-md-6" style=";border-right:1px solid #0062CC;">
<h2>Job Seekers</h2>
<hr>
<p>If you are a job seeker and would like to contact us, call us at:</p>
<p><b>Toll Free:</b> 1-800-4196666</p>
<p><b>Toll :</b> +91-40-6611-6611
(Standard STD / ISD charges apply)</p>
<P><b>Address :</b> PO Box 86, Bristol,
CT 06011
USA.</P>
<p>To reach us through mail, click the button below</p>
<button type="button" class="btn btn-primary">Go</button>
</div>
<div class="col-md-6 ">
<h2> Employers</h2>
<hr>
<p>If you are a job seeker and would like to contact us, call us at:</p>
<p><b>Toll Free:</b> 1-800-4196666</p>
<p><b>Toll :</b> +91-40-6611-6611
(Standard STD / ISD charges apply)</p>
<P><b>Address :</b> PO Box 86, Bristol,
CT 06011
USA.</P>
<p>To reach us through mail, click the button below</p>
<button type="button" class="btn btn-primary">Go</button>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 pl-0">
<div class="map-responsive">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3845.763437787898!2d74.97133181485046!3d15.44331408927024!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bb8d2aea0033e1d%3A0x7d1c47d33069ee80!2sSUCO+Technologies+India+Pvt+Ltd!5e0!3m2!1sen!2sin!4v1514438402419" width="500" height="400" frameborder="0" style="border:0;margin-top:50px; " allowfullscreen></iframe>
</div>
</div>
<div class="col-md-6 mt-4">
<h1>HAVE A QUESTION ?</h1>
<p><b>Fill the form </b></p>
<form>
<div class="form-group">
<input type="text" class="form-control" id="email" placeholder="Enter Name" name="name">
</div>
<div class="form-group">
<input type="email" class="form-control" id="email" placeholder="Enter email" name="email">
</div>
<div class="form-group">
<input type="subject" class="form-control" id="sub" placeholder="Enter the Subject" name="subject">
</div>
<div class="form-group">
<textarea type="Message" class="form-control" id="exampleFormControlTextarea1" placeholder="Your Message" rows="4"></textarea>
</div><br>
<div class="submit">
<button type="button" class="btn btn-primary ">Send</button>
</div><br><br>
</form>
</div>
</div>
</div>
<!--footer-->
<?php include_once "footer.php"; ?>
<!-- end of footer-->
</div>
<?php include_once "script.php"; ?>
</body>
</html>