-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
546 lines (522 loc) · 27.5 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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reliable Packers and Movers Ltd.</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css"
integrity="sha384-jLKHWM3JRmfMU0A5x5AkjWkw/EYfGUAGagvnfryNV3F9VqM98XiIH7VBGVoxVSc7" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
</head>
<body>
<div class="header-top">
<div class="container">
<div class="header-links">
<ul>
<li><a href="coming-soon.html"><i class="fas fa-home"></i></a></li>
<li><a href="online.html">Online Payment</a></li>
<li>|</li>
<li><a href="contact-us.html">Customer Care</a></li>
<li>|</li>
<!-- <li><a href="coming-soon.html">Worldwide Presence</a></li> -->
<!-- <li>|</li> -->
<li><a href="coming-soon.html">Download App</a></li>
<li>|</li>
<!-- <li><a href="coming-soon.html">Trucking Cube</a></li>
<li>|</li> -->
<!-- <li><a href="coming-soon.html">CSR</a></li>
<li>|</li> -->
<li><a href="faq.html">FAQ's</a></li>
<li>|</li>
<li><a href="beware.html">Beware of Fake</a></li>
<!-- <li>|</li>
<li><a href="coming-soon.html">Our USPs</a></li> -->
</ul>
</div>
</div>
</div>
<header class="header" id="myHeader">
<nav>
<a href="index.html"><img src="images/Logo1.jpg"></a>
<div class="nav-links" id="navLinks">
<i class="fas fa-times" onclick="hideMenu()"></i>
<ul>
<li><a href="coming-soon.html">Profile</a></li>
<li><a href="coming-soon.html">Why Reliable Packers and Movers Ltd.</a></li>
<li><a href="coming-soon.html">Services</a></li>
<li><a href="coming-soon.html">Shifting Process</a></li>
<li><a href="coming-soon.html">International Moving</a></li>
<li><a href="coming-soon.html">Storage</a></li>
<li><a href="contact-us.html">Contact Us</a></li>
</ul>
</div>
<i class="fas fa-bars" onclick="showMenu()"></i>
</nav>
</header>
<section class="section">
<div class="text-box">
<h1>Our Team</h1>
<p>More than 100 employees,who are passionate about providing you the best-in-class services.<br>Our staff
consists of highly
professional people who has great.
</p>
<a href="" class="hero-btn">Visit Us To Know More</a>
</div>
</section>
<!-- Why RMPL -->
<section class="rmpl">
<div class="row">
<div class="rmpl-col1">
<h1><span class="txt-larg25">Reliable Packers and Movers</span></h1>
<p><i class="fas fa-phone-alt"></i><span class="phone">9811550858</span></p>
<p>Domestic Moving, Office Moving, Employee Moving, Storage, Commercial<br> Transportation,
Car Moving, International Moving.
</p>
<p><a href=""><span class="page_speed_1252096185">Read More</span></a></p>
<div class="clearfix right1">
<h5 class="sub-title1 sub-2">A MOVING SOLUTION THAT ASSURES</h5>
</div>
<div class="row">
<div class="col-lg-6">
<div class="innovation-block__image"
style="background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/convenience.jpg);">
<h3 class="innovation-block__heading">Convenience</h3>
</div>
</div>
<div class="col-lg-6">
<div class="innovation-block__image innovation-block__image--image1"
style="background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/convenience.jpg);">
<h3 class="innovation-block__heading">Safety and Security</h3>
</div>
</div>
<div class="col-lg-6">
<div class="innovation-block__image"
style="background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/convenience.jpg);">
<h3 class="innovation-block__heading">Customized packing</h3>
</div>
</div>
<div class="col-lg-6">
<div class="innovation-block__image innovation-block__image--image1"
style="background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/convenience.jpg);">
<h3 class="innovation-block__heading">Zero Damage</h3>
</div>
</div>
</div>
</div>
<div class="rmpl-col2">
<ul style="list-style: none;">
<li><span class="first-rpml"><strong>Why RPML?</strong></span></li>
<li><img src="images/awards.png" alt width="20" height="20">20+ years Trust</li>
<li><img src="images/loc.png" alt width="20" height="20">400+ service location</li>
<li><img src="images/moves.png" alt width="20" height="20">5000+ moves every year</li>
<li><img src="images/man-power.png" alt width="20" height="20">Trained Manpower</li>
<li><img src="images/truck.png" alt width="20" height="20px">GPS enabled vehicles</li>
<li><img src="images/innovative.png" alt width="20" height="20px">Innovative Technology</li>
<li><img src="images/consign.png" alt width="20" height="20px">Online Consignment Tracking</li>
<li><img src="images/pre-survey.png" alt width="20" height="20px">Free pre move survey</li>
<li><img src="images/locker.png" alt width="20" height="20px">Home storage lockers</li>
</ul>
</div>
</div>
</section>
<!-- what we serve -->
<div class="wrapper">
<header>What We're Serve to</header>
<input type="radio" name="slider" checked id="home">
<input type="radio" name="slider" id="blog">
<input type="radio" name="slider" id="house">
<nav>
<label for="home" class="home"><i class="fas fa-home"></i>Domestic</label>
<label for="blog" class="blog"><i class="fas fa-blog"></i>Commercial</label>
<div class="slider"></div>
</nav>
<section>
<div class="content content-1">
<div class="title">Domestic Move</div>
<p>Reliable Packers and Movers Ltd. offers unrivaled domestic relocation services as per your specific
requirements. We make sure that your household shifting to and from any corner of India is
absolutely hassle-free by deploying our distinctive and brilliant moving techniques.</p>
<div class="col-lg-6">
<div class="serve-block__column">
<div class="row">
<div class="col-lg-6">
<div class="serve-block__image1" onclick="openCity(event, 'housing')" id="defaultOpen"
style="background-image: url(images/delivery-truck.png);">
<h3 class="serve-block__heading">Household Shifting</h3>
</div>
</div>
<div class="col-lg-6">
<div class="serve-block__image2" onclick="openCity(event, 'international')"
style="background-image: url(images/international-flights.png);">
<h3 class="serve-block__heading">International Moving</h3>
</div>
</div>
</div>
</div>
</div>
<div id="housing" class="tabcontent">
<div class="house_shifting">
<div class="houseShifting-block__image"
style="background-image: url(images/house-shifting-1.jpg);">
</div>
</div>
<h3>Household Shifting</h3>
<p>We are the fore-runners in packing and moving business offering matchless and effective
relocation services in the household sector.</p>
</div>
<div id="international" class="tabcontent">
<div class="house_shifting">
<div class="houseShifting-block__image"
style="background-image: url(images/international-shifting.png);">
</div>
</div>
<h3>International Moving</h3>
<p>Being the most trusted international removal & storage company, we have been rendering our
expertise in overseas moving from past 33+ years.</p>
</div>
</div>
<div class="content content-2">
<div class="title">Commercial Move</div>
<p>We are trusted by numerous organizations worldwide for offering the unexpected commercial moving
services. We ensure that our corporate clients attain peace of mind while relocating their business
to and from any place. Our simplified approach includes thoughtful planning, expert moving
assistance, clear communication, and punctuality so that our clients never get disappointed on
hiring us as their commercial moving partner.</p>
<div class="col-lg-6">
<div class="serve-block__column">
<div class="row">
<div class="col-lg-6">
<div class="serve-block__image1" onclick="openCity(event, 'chain')" id="defaultOpen"
style="background-image: url(images/delivery-truck.png);">
<h3 class="serve-block__heading">Supply Chain</h3>
</div>
</div>
<div class="col-lg-6">
<div class="serve-block__image2" onclick="openCity(event, 'warehouse')"
style="background-image: url(images/international-flights.png);">
<h3 class="serve-block__heading">Warehousing</h3>
</div>
</div>
</div>
</div>
</div>
<div id="chain" class="tabcontent">
<div class="house_shifting">
<div class="houseShifting-block__image"
style="background-image: url(images/house-shifting-1.jpg);">
</div>
</div>
<h3>Supply Chain</h3>
<p>We are the fore-runners in packing and moving business offering matchless and effective
relocation services in the household sector.</p>
</div>
<div id="warehouse" class="tabcontent">
<div class="house_shifting">
<div class="houseShifting-block__image"
style="background-image: url(images/international-shifting.png);">
</div>
</div>
<h3>Warehousing</h3>
<p>Being the most trusted international removal & storage company, we have been rendering our
expertise in overseas moving from past 33+ years.</p>
</div>
</div>
</section>
</div>
<section class="contact">
<h3>Contact Form</h3>
<div class="container-contact">
<form action="#">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="country">Country</label>
<select id="country" name="country">
<option value="australia">Australia</option>
<option value="canada">Canada</option>
<option value="usa">USA</option>
</select>
<label for="subject">Subject</label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</section>
<section>
<div class="container-fluid">
<h1>What Makes Reliable Packers Unique?</h1>
<h3>We Always Deliver More Than Expected</h3>
<div class="accordion">
<h5><img src="images/truck-cube.png" alt width="22" height="22">Trucking Cube(Container)</h5>
</div>
<div class="panel">
<p>Put your own lock on cube and keep the keys with you,</p>
</div>
<div class="accordion">
<h5><img src="images/truck-cube.png" alt width="22" height="22">LED Box</h5>
</div>
<div class="panel">
<p>Ensure TV's complete life i.e 9 years.</p>
</div>
<div class="accordion">
<h5><img src="images/truck-cube.png" alt width="22" height="22">Perfect Box</h5>
</div>
<div class="panel">
<p></p>
</div>
<div class="accordion">
<h5><img src="images/truck-cube.png" alt width="22" height="22">Car Carriers</h5>
</div>
<div class="panel">
<p>Safest Option</p>
</div>
<div class="accordion">
<h5><img src="images/truck-cube.png" alt width="22" height="22">Cloth Cartons</h5>
</div>
<div class="panel">
<p></p>
</div>
<div class="accordion">
<h5><img src="images/truck-cube.png" alt width="22" height="22">Coat/Saree Cartons</h5>
</div>
<div class="panel">
<p></p>
</div>
<div class="accordion">
<h5><img src="images/truck-cube.png" alt width="22" height="22">Foam wrapping of avoid scratches</h5>
</div>
<div class="panel">
<p></p>
</div>
<div class="accordion">
<h5><img src="images/truck-cube.png" alt width="22" height="22">Fabric Sheets</h5>
</div>
<div class="panel">
<p>Safest Option</p>
</div>
</div>
</section>
<section class="search-location" id="search-location">
<div class="location">
<h3>Search By Location</h3>
<div class="row-search">
<div class="column" style="background-color:#fff;">
<ul id="search-add">
<li><a href="address.html?city=abad">Packers & Movers ahmedabad</a></li>
<li><a href="address.html?city=allahabad">Packers & Movers
allahabad</a>
</li>
<li><a href="address.html?city=ambala">Packers & Movers
ambala</a>
</li>
<li><a href="address.html?city=aurangabad">Packers & Movers aurangabad</a>
</li>
<li><a href="address.html?city=bengaluru">Packers & Movers bengaluru</a>
</li>
<li><a href="address.html?city=bhopal">Packers & Movers
bhopal</a>
</li>
<li><a href="address.html?city=bhubhneshwar">Packers & Movers
bhubhneshwar</a>
</li>
<li><a href="address.html?city=chandigarh">Packers & Movers
chandigarh</a>
</li>
<li><a href="address.html?city=tiruchirapalli">Packers & Movers
tiruchirapalli</a>
</li>
</ul>
</div>
<div class="column" style="background-color:#fff;">
<ul>
<li><a href="address.html?city=chennai">Packers & Movers
chennai</a>
</li>
<li><a href="address.html?city=coimbatore">Packers & Movers coimbatore</a></li>
<li><a href="address.html?city=cuttack">Packers & Movers
cuttack</a>
</li>
<li><a href="address.html?city=delhi">Packers & Movers
delhi</a>
</li>
<li><a href="address.html?city=durgapur">Packers & Movers durgapur</a>
</li>
<li><a href="address.html?city=ernakulam">Packers & Movers
ernakulam</a>
</li>
<li><a href="address.html?city=faridabad">Packers & Movers
faridabad</a>
</li>
<li><a href="address.html?city=goa">Packers & Movers
goa</a>
</li>
<li><a href="address.html?city=vishakhapatnam">Packers & Movers
vishakhapatnam</a>
</li>
</ul>
</div>
<div class="column" style="background-color:#fff;">
<ul>
<li><a href="address.html?city=gurgaon">Packers & Movers
gurgaon</a>
</li>
<li><a href="address.html?city=guwahati">Packers & Movers
guwahati</a>
</li>
<li><a href="address.html?city=haridwar">Packers & Movers haridwar</a>
</li>
<li><a href="address.html?city=hyderabad">Packers & Movers hyderabad</a>
</li>
<li><a href="address.html?city=indore">Packers & Movers
indore</a>
</li>
<li><a href="address.html?city=jamshedpur">Packers & Movers
jamshedpur</a>
</li>
<li><a href="address.html?city=kanpur">Packers & Movers
kanpur</a>
</li>
<li><a href="address.html?city=kolkata">Packers & Movers
kolkata</a>
</li>
</ul>
</div>
<div class="column" style="background-color:#fff;">
<ul>
<li><a href="address.html?city=kottayam">Packers & Movers
kottayam</a>
</li>
<li><a href="address.html?city=lucknow">Packers & Movers
lucknow</a>
</li>
<li><a href="address.html?city=mangaluru">Packers & Movers mangaluru</a>
</li>
<li><a href="address.html?city=mumbai">Packers & Movers mumbai</a>
</li>
<li><a href="address.html?city=nagpur">Packers & Movers
nagpur</a>
</li>
<li><a href="address.html?city=noida">Packers & Movers
noida</a>
</li>
<li><a href="address.html?city=patna">Packers & Movers
patna</a>
</li>
<li><a href="address.html?city=pune">Packers & Movers
pune</a>
</li>address
</ul>
</div>
</div>
</div>
</section>
<section class="footer">
<div class="container">
<div class="footer__links">
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="footer__column">
<div class="footer__logo">
<img src="images/Logo1.jpg" class="img-fluid">
</div>
<div class="footer__contact-info">
<div class="card">
<p>We Accept All</p>
<div class="row-card">
<div>
<img src="images/54438-visa_jpg_55_35_cover_50.jpg" alt="Visa Card">
<img src="images/52551-mastercard_jpg_55_35_cover_50.jpg" alt="Master Card">
</div>
</div>
<p>Download App</p>
<div class="row-card">
<ul style="list-style: none;">
<li><a href=""><img src="images/39671-google_webp_115_35_cover_50.jpg"
alt="Playstore Image"></a></li>
<li><a href=""><img src="/images/Iphone_webp_115_35_cover_50.jpg"
alt="Appstore Image"></a></li>
</ul>
</div>
</div>
</div>
<div class="footer__Social-icons">
<!-- <span>Follow: </span> -->
<ul>
<li> <a href="#">
<i class="fab fa-facebook-square"></i>
</a></li>
<li> <a href="#">
<i class="fab fa-twitter-square"></i>
</a></li>
<li> <a href="#">
<i class="fab fa-linkedin"></i>
</a></li>
<li> <a href="#">
<i class="fab fa-instagram"></i>
</a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-2 col-md-6">
<div class="footer__column">
<h2 class="footer__heading">About Us</h2>
<ul class="menu-link" style="list-style: none; text-decoration: none;">
<li><a href="">Why RPML</a></li>
<li><a href="">Our History</a></li>
<li><a href="">Strength</a></li>
<li><a href="">Our USP</a></li>
<li><a href="">Achievements</a></li>
<li><a href="">Our TVC & Videos</a></li>
<li><a href="">News & Events</a></li>
<li><a href="">Our Advantages</a></li>
<li><a href="">Press Release</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="footer__column">
<h2 class="footer__heading">Need Help ?</h2>
<ul class="menu-link" style="list-style: none; text-decoration: none;">
<li><a href="">FAQ's</a></li>
<li><a href="">Consignment Tracking</a></li>
<li><a href="">Career</a></li>
<li><a href="">Expert Advice</a></li>
<li><a href="">Do's or Don'ts</a></li>
<li><a href="">Contact Us</a></li>
<li><a href="">Customer Care</a></li>
<li><a href="">Moving Tips</a></li>
<li><a href="">Site Map</a></li>
<li><a href="">Moving Checklist</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="footer__column">
<h2 class="footer__heading">Other Links</h2>
<ul class="menu-link" style="list-style: none; text-decoration: none;">
<li><a href="">Shifting Process</a></li>
<li><a href="">CSR</a></li>
<li><a href="">Customer Feedback</a></li>
<li><a href="">Safety Features</a></li>
<li><a href="">Corporate Brochure</a></li>
<li><a href="">Locations</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="footer__bottom">
<p>Copyright © 2021 RELIABLE PACKERS AND MOVERS LTD | All Rights Reserved </a></p>
</div>
</section>
<!-- Javacript for toggle menu -->
<script src="app.js"></script>
</body>
</html>