-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactus.html
237 lines (204 loc) · 8.84 KB
/
contactus.html
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/aea7f99b7b.js" crossorigin="anonymous"></script>
<title>Contact US-Technical Center</title>
</head>
<body>
<header>
<div id="topHeader">
<div class="container">
<div class="row">
<div class="col-12 text-lg-right ">
<a href="+(91)9090909090"><i class="fas fa-phone"></i>(+91)9090909090 </a>
<a href="mail to :abc@gmail.com"> <i class="fas fa-envelope"></i> inquiry@Technicalcentre.com </a>
</div>
</div>
</div>
</div>
<div id="bottomheader">
<div class="container-fluid">
<div class="navbar navbar-dark navbar-expand-md " style="background-color: #004d80 " >
<a class="navbar-brand" href="">
<img class="img-fluid" src="img/freeLogo.jpeg" width="80px">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo01" aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarToggler">
<ul class="navbar-nav ">
<li class="nav-item ">
<a class="nav-link" href="default.html">Home</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="portfolio.html">Portfolio</a>
</li>
<li class="nav-item dropdown ">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown" >
Services
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="webdesigning.html">Web Designing</a>
<a class="dropdown-item" href="webdevelopment.html">Web Development</a>
<a class="dropdown-item" href="seoservices.html">SEO Services</a>
<a class="dropdown-item" href="softwaredevelopment.html">Software Development</a>
</div>
</li>
<li class="nav-item ">
<a class="nav-link" href="aboutus.html">About Us</a>
</li>
<li class="nav-item active ">
<a class="nav-link" href="contactus.html">Contact Us</a>
</li>
</ul>
</div>
</div>
</div>
</header>
<section class="breadcrumbs-section">
<div class="container pl-3 p-sm-3">
<div class="row">
<div class="col-12">
<h2>Contact Us</h2>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="default.html">Home</a></li>
<li class="breadcrumb-item active">Contact Us</li>
</ol>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-12">
<p>We are always here to help. If your have requirements/queries about our services; fill up the contact form
below and we'll do our best to reply within 24 hours Alternatively simply pickup the phone and give us a
call.</p>
<hr />
</div>
</div>
</div>
</section>
<section class="form-section">
<div class="container">
<div class="row">
<div class="col-md-6">
<form action="">
<div class="form-row">
<div class="form-group col-md-6">
<input type="text" class="form-control" placeholder="Full name *">
</div>
<div class="form-group col-md-6">
<input type="email" class="form-control" placeholder="Email Address *">
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<input type="number" class="form-control" placeholder="Contact Number *">
</div>
<div class="form-group col-md-6">
<select class="form-control" name="" id="">
<option selected>Country</option>
<option>India</option>
<option>America</option>
<option>England</option>
<option>China</option>
</select>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-12">
<input type="text" class="form-control" placeholder="Subject *">
</div>
</div>
<div class="form-row">
<div class="form-group col-md-12">
<textarea class="form-control" rows="3"></textarea>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-12 text-center">
<button type="submit" class="btn btn-primary"><i class="fas fa-paper-plane"></i> Send Message</button>
</div>
</div>
</form>
</div>
<div class="col-md-6 address">
<h5>Call Us / WhatsApp</h5>
<p><a href="tel:+919090909090"><i class="fas fa-phone"></i> +(91) 9090909090 </a><br>
</p>
<h5>Email / Website</h5>
<p>
<a href="mailto:technicalcentreinfo@gmail.com"><i class="fas fa-envelope"></i> simplesnippetsinfo@gmail.com</a><br>
<a href="https://techincalcentre.tech/"><i class="fas fa-globe">
</i>wwwtechnicalcentre.tech </a>
</p>
<h5>Working hours</h5>
<p>
Mon - Fri : 9am - 6pm(IST)
</p>
<h5>Address</h5>
<p>
Xzy estate, Royal Palm,Rohini, Delhi - 110704, Maharashtra
</p>
</div>
</div>
</div>
</section>
<footer class="full-footer">
<div class="container top-footer p-md-3 p-1">
<div class="row">
<div class="col-md-3">
<img class="img-fluid" src="img/freeLogo.jpeg" width="100px" alt="">
<p>
Technical Center is a Tech-Educational Channel / Platform / Blog / Medium for anyone and everyone ...<a href="#">Read
more...</a>
</p>
<a style="color: silver;" class="p-1" href="#"><i class="fab fa-2x fa-facebook"></i></a>
<a style="color: silver;" class="p-1" href="#"><i class="fab fa-2x fa-google-plus-square"></i></a>
<a style="color: silver;" class="p-1" href="#"><i class="fab fa-2x fa-twitter-square"></i></a>
<a style="color: silver;" class="p-1" href="#"><i class="fab fa-2x fa-instagram"></i></a>
</div>
<div class="col-md-3">
<h3>Important Links</h3>
<a href="#">Privacy Policy</a><br>
<a href="#">Youtube Channel Link </a><br>
<a href="#">Blog Articles </a><br>
<a href="#">Social Media</a>
</div>
<div class="col-md-3">
<h3>Our Services</h3>
<a href="webdesigning.html">Web Designing </a><br>
<a href="webdevelopment.html">Web Development </a><br>
<a href="seoservices.html">SEO services </a><br>
<a href="softwaredevelopment.html">Software Development </a>
</div>
<div class="col-md-3">
<h3>Contact Us</h3>
<a href="#"><i class="fas fa-phone"></i> +(91) 9090909090 </a><br>
<a href="#"><i class="fas fa-envelope"></i>inquiry@Technicalcentre.com </a><br>
<div class="embed-responsive embed-responsive--16by9"></div>
<iframe class="embed-responsive-item " src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d448183.73907005717!2d76.81307299667618!3d28.646677259922765!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x390cfd5b347eb62d%3A0x37205b715389640!2sDelhi!5e0!3m2!1sen!2sin!4v1627032330280!5m2!1sen!2sin" ></iframe>
</div>
</div>
</div>
</div>
<div class="container-fluid bottom-footer ">
<div class="row">
<div class="col-12 text-center">
<p> Copyrights © 2021- All rights reserved </p>
</div>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
</body>
</body>
</html>