-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
371 lines (345 loc) · 14 KB
/
index.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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="fontawesome-free-5.6.3-web/css/all.css">
<!-- Our Custom CSS style sheet -->
<link rel="stylesheet" href="css/style.css">
<title>Home - SafeEdge Packers & Movers</title>
</head>
<!-- xs<576 | 576<sm<768 | 768<md<992 | 992<lg<1200 | 1200<xl -->
<body>
<!-- START: HEADER -->
<header>
<div class="p-1" id="topHeader">
<div class="container">
<div class="row">
<div class="col-12 text-right">
<a class="p-1" href="tel:+918975909051"> <i class="fas fa-phone"></i> +(91) 897-590-9051 </a>
<a class="p-1" href="mailto:safeedgepm@gmail.com "> <i class="fas fa-envelope"></i>
safeedgepm@gmail.com </a>
</div>
</div>
</div>
</div>
<div id="bottomHeader">
<div class="container-fluid">
<nav class="navbar navbar-dark navbar-expand-md" style="background-color:rgb(0, 0, 0);">
<a class="navbar-brand" href="">
<img src="imgs/logo.png" width="150px" height="75px" alt="SafeEdge Packers & Movers">
</a>
<button data-toggle="collapse" data-target="#navbarToggler" type="button" class="navbar-toggler"><span
class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarToggler">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" role="button" href="#">Services</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Door To Door Service</a>
<a class="dropdown-item" href="#">Loading/Unloading</a>
<a class="dropdown-item" href="#">Transportation</a>
<a class="dropdown-item" href="#">Vehicle Transportation</a>
<a class="dropdown-item" href="#">Office/Home Shifting</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Truck Rental Service</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="testimonial.html">Testimonial </a>
</li>
<li class="nav-item">
<a class="nav-link" href="aboutus.html">About Us </a>
</li>
<li class="nav-item">
<a class="nav-link" href="contactus.html">Contact Us </a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</header>
<!-- END: HEADER -->
<!-- Start : Home page first hero section -->
<section>
<div class="container-fluid">
<div id="carouselExampleIndicators" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="3"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="imgs/slideshow/door-to-door.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
</div>
</div>
<div class="carousel-item">
<img src="imgs/slideshow/loading-unloading.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="imgs/slideshow/transportation.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="imgs/slideshow/relocation.jpg" class="d-block w-100" alt="...">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</section>
<!-- END : Home page first hero section -->
<!-- START : Home page second section - Our Qualities -->
<section class="pt-3 pb-4">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<h3>
Lots of Transporters in town. Why you should choose us?
</h3>
<hr>
</div>
</div>
<div class="row">
<div class="col-md-4 text-center">
<img class="img-fluid qualities-img1 p-5" src="imgs/our_qualities/safety.png" alt="">
<h5>
Unmatched Safety Standards
</h5>
<p>
We prioritize the safety of your belongings with professional-grade packing and careful handling.
</p>
</div>
<div class="col-md-4 text-center">
<img class="img-fluid qualities-img1 p-5" src="imgs/our_qualities/trained-worker.png" alt="">
<h5>
Trained Professionals
</h5>
<p>
Our team is skilled, courteous, and dedicated to making your move stress-free.
</p>
</div>
<div class="col-md-4 text-center">
<img class="img-fluid qualities-img1 p-5" src="imgs/our_qualities/eco-friendly.png" alt="">
<h5>
Eco-Friendly Practices
</h5>
<p>
We use sustainable packing materials wherever possible to reduce our environmental impact.
</p>
</div>
</div>
<div class="row">
<div class="col-md-4 text-center">
<img class="img-fluid qualities-img p-5" src="imgs/our_qualities/highquality.png" alt="">
<h5>
Trustworthy Service
</h5>
<p>
Transparent communication and no hidden charges, so you know exactly what to expect.
</p>
</div>
<div class="col-md-4 text-center">
<img class="img-fluid qualities-img p-5" src="imgs/our_qualities/delivery.png" alt="">
<h5>
On Time Delivery
</h5>
<p>
We respect your time and ensure all moves are completed on schedule.
</p>
</div>
<div class="col-md-4 text-center">
<img class="img-fluid qualities-img p-5" src="imgs/our_qualities/highvalue.png" alt="">
<h5>
Value Of Money
</h5>
<p>
Our services are competitively affordable, ensuring you get top-notch quality without overspending.
</p>
</div>
</div>
</div>
</section>
<!-- END : Home page second section - Our Qualities -->
<!-- START : Home page 3rd section - Requirements -->
<section class="requirements-section pt-1 pb-1 pt-md-3 pb-md-3">
<div class="container">
<div class="row align-items-center">
<div class="text-center col-md-9">
<h3>Do you have any requirements? We can do it for you!</h3>
</div>
<div class="text-center col-md-3">
<a href="contactus.html"><button class="btn btn-lg btn-primary">Contact Us Now</button></a>
</div>
</div>
</div>
</section>
<!-- END : Home page 3rd section - Requirements -->
<!-- START : Home page 4rd section - About Tech Hub -->
<section class="p-2 pt-md-4 pb-md-4">
<div class="container">
<div class="row align-items-center">
<div class="col-md-6">
<h2>About SafeEdge </h2>
<h6>Welcome to SafeEdge Packers & Movers, your trusted partner in safe, reliable, and affordable relocation
services.
Founded with a mission to simplify moving experiences, we specialize in....</h6>
<a href="aboutus.html"><button class="btn btn-lg btn-primary">Read more</button></a>
</div>
<div class="col-md-6">
<img class="img-fluid p-3" src="imgs/hero-img-half.png" alt="">
</div>
</div>
</div>
</section>
<!-- END : Home page 4rd section - About Tech Hub -->
<!-- START : Home page 6th section - Our services -->
<section class="pt-3 pb-4">
<div class="container">
<div class="row mt-4">
<div class="col text-center">
<h3>
Our Best in Class Services
</h3>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-4 text-center">
<img class="img-fluid qualities-img1 p-5" src="imgs/services/house-shifting-service.png" alt="Card image cap">
<h5>
Home Relocation Services
</h5>
<p>
Moving to a new home? We make it easy! Our team handles everything from packing and loading to
transportation and unpacking, ensuring your belongings are safe every step of the way.
</p>
</div>
<div class="col-md-4 text-center">
<img class="img-fluid qualities-img p-5" src="imgs/services/packing-moving-service.png" alt="Card image cap">
<h5>
Packing & Moving Services
</h5>
<p>
Our professional-grade packing materials and techniques keep your items secure during transit. From fragile
items to bulky furniture, we handle it all.
</p>
</div>
<div class="col-md-4 text-center">
<img class="img-fluid qualities-img p-5" src="imgs/services/customized-moving.png" alt="Card image cap">
<h5>
Customized Moving Solutions
</h5>
<p>
Every move is unique, and so are our services. We offer tailored solutions to fit your specific requirements
and preferences.
</p>
</div>
</div>
<div class="row mb-md-3">
<div class="col-md-4 text-center">
<img class="img-fluid qualities-img1 p-5" src="imgs/services/bike-transportation-service.png"
alt="Card image cap">
<h5>
Vehicle Transportation
</h5>
<p>
We transport bikes, and other vehicles safely across cities or states, ensuring they reach their
destination without a scratch.
</p>
</div>
<div class="col-md-4 text-center">
<img class="img-fluid qualities-img1 p-5" src="imgs/services/moving-coordinator.png" alt="Card image cap">
<h5>
Dedicated Moving Coordinator
</h5>
<p>
We assign a dedicated coordinator to every move to ensure seamless planning and execution from start to
finish.
</p>
</div>
<div class="col-md-4 text-center">
<img class="img-fluid qualities-img1 p-5" src="imgs/services/long-distance-service.png" alt="Card image cap">
<h5>
Long-Distance Moving
</h5>
<p>
Whether it’s Pune to Bangalore or anywhere across India, our reliable transportation network ensures timely
and safe delivery of your belongings.
</p>
</div>
</div>
</section>
<!-- END : Home page 6th section - Our services -->
<!-- START: FOOTER -->
<footer class="full-footer">
<div class="container top-footer p-md-3 p-1">
<div class="row">
<div class="col-md-3 pl-4 pr-4">
<img class="img-fluid" src="imgs/logo.png" alt="SafeEdge Packers & Movers">
<p>
Welcome to SafeEdge Packers & Movers, your trusted partner in safe, reliable, and affordable relocation
services...<a href="aboutus.html">Read
more</a>
</p>
<a style="color:silver;" class="p-1" href="#"><i class="fab fa-2x fa-facebook-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 pl-4 pr-4">
<h3>Important Links</h3>
<a href="#">Our Services</a><br>
<a href="contactus.html">Contact Us </a><br>
<a href="testimonial.html">Testimonial </a><br>
<a href="#">Privacy Policy</a>
</div>
<div class="col-md-3 pl-4 pr-4">
<h3>Our Services</h3>
<a href="#">Door To Door Service </a><br>
<a href="#">Loading/Unloading </a><br>
<a href="#">Transportation </a><br>
<a href="#">Vehicle Transportation </a><br>
<a href="#">Office/Home Shifting </a><br>
<a href="#">Truck Rental Service </a>
</div>
<div class="col-md-3 pl-4 pr-4">
<h3>Contact Us</h3>
<a href="tel:+918975909051"><i class="fas fa-phone"></i> +(91) 897-590-9051 </a><br>
<a href="mailto:safeedgepm@gmail.com "><i class="fas fa-envelope"></i> safeedgepm@gmail.com</a><br>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="----" frameborder="0"></iframe>
</div>
</div>
</div>
</div>
<div class="container-fluid bottom-footer pt-2">
<div class="row">
<div class="col-12 text-center">
<p>Copyrights © 2024 - All rights reserved.</p>
</div>
</div>
</div>
</footer>
<!-- START: FOOTER -->
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="bootstrap/js/jquery-3.3.1.slim.min.js"></script>
<script src="bootstrap/js/popper.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>