-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
537 lines (516 loc) · 29.6 KB
/
about.html
File metadata and controls
537 lines (516 loc) · 29.6 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Salvage</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link type="text/css" href="assets/css/bootstrap.min.css" media="screen" rel="stylesheet">
<!-- UIkit CSS -->
<link rel="stylesheet" href="assets/css/uikit.min.css" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link type="text/css" href="assets/css/bootstrap-grid.min.css" media="screen" rel="stylesheet">
<link type="text/css" href="assets/css/style.css" media="screen" rel="stylesheet">
</head>
<body>
<section class="sec-aboutus">
<section class="sec-top-strip">
<div class="top-icons">
<span class="social-top">
<a href="#"><span class="fa fa-facebook"></span></a>
<a href="#"><span class="fa fa-linkedin"></span></a>
<a href="#"><span class="fa fa-instagram"></span></a>
</span>
<div class="dropdown powered-by">
<a href="#" class="dropBtn dropdown-toggle" data-toggle="dropdown">
Powered By
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Deal any Car</a>
<a class="dropdown-item" href="#">Rescue Any Car</a>
<a class="dropdown-item" href="#">Auctiin Any Car</a>
<a class="dropdown-item" href="#">Market Any Car</a>
</div>
</div>
</div>
</section>
<section class="sec-navbar-top hide-on-mobile">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-3">
<div class="logo">
<img src="assets/img/logo.png" alt="">
</div>
</div>
<div class="col-lg-8 col-md-9">
<div class="nav-items-main">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="faq.html">FAQs</a>
<a href="contact.html">Contact</a>
<a href="tel:0123132" class="phone-number">
<span class="fa fa-phone"></span>
03333 580 570
</a>
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" data-toggle="dropdown">
For Companies
</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="service.html">Services</a>
<a class="dropdown-item" href="#signUpModal" data-toggle="modal">Sign up</a>
<a class="dropdown-item" href="login.html">Salvage Log in</a>
<a class="dropdown-item" href="login.html">Claim Log in</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="sec-navbar-top border-line-nav show-on-mobile">
<div class="logo">
<img src="assets/img/logo.png" alt="">
<div class="header-button">
<a href="#"><span class="fa fa-phone"></span> 03333 580 570</a>
<button class="btn nav-button">
<span class="fa fa-bars"></span>
</button>
</div>
</div>
<div class="drop-nav-main">
<div class="main-links">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<div class="dropdown-menu-main">
<a href="#" class="sub-menu-main">
Services
<img src="assets/img/footerArrow.png" alt="">
</a>
<div class="right-drop">
<a href="salvageCompanies.html">Salvage Companies</a>
<a href="claimCompanies.html">Claim Companies</a>
</div>
</div>
<div class="dropdown-menu-main">
<a href="#" class="sub-menu-main">
For Companies
<img src="assets/img/footerArrow.png" alt="">
</a>
<div class="right-drop">
<a href="#signUpModal" data-toggle="modal">Sign Up</a>
<a href="login.html">Salvage Log In</a>
<a href="login.html">Claim Log In</a>
</div>
</div>
<a href="faq.html">FAQs</a>
<a href="contact.html">Contact</a>
<div class="dropdown-menu-main">
<a href="#" class="sub-menu-main">
Powered By
<img src="assets/img/footerArrow.png" alt="">
</a>
<div class="right-drop">
<a href="#">Deal Any Car</a>
<a href="#">Rescue Any Car</a>
<a href="#">Auction Any Car</a>
<a href="#">Market Any Car</a>
</div>
</div>
</div>
<div class="social">
<a href="#"><span class="fa fa-facebook"></span></a>
<a href="#"><span class="fa fa-linkedin"></span></a>
<a href="#"><span class="fa fa-google-plus"></span></a>
<a href="#"><span class="fa fa-twitter"></span></a>
<a href="#"><span class="fa fa-dribbble"></span></a>
</div>
</div>
</section>
<section class="sec-header-for-subPages">
<div class="container-main">
<img src="assets/img/aboutimg.png" alt="">
</div>
<div class="left-header-content">
<div class="aligment-center">
<div class="content" data-aos="fade-right">
<h1>
UK's leading salvage <br>& scrap car buyers!
</h1>
<p>
Get a free and instant valuation online <br>
or by phone under 30 Seconds!
</p>
</div>
<div class="top-header-search" data-aos="fade-left">
<div class="main-search">
<img src="assets/img/gb.png" alt="">
<input type="text" class="form-control" placeholder="Enter Your Reg">
</div>
<a href="form1.html" class="btn">
Value my Car
</a>
</div>
</div>
</div>
</section>
<section class="sec-about-content">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="about-content mt-0">
<h2>About</h2>
<p>
At SalvageAnyCar we have been in the automotive industry for over 15 years. You may be
wondering how we can help, and hopefully this page can express that in further detail.
You may reach a time where your car or vehicle has met an end, it may be damaged due to
a crash or having failed an M.O.T. whatever the circumstances, Salvage any Car are here
to help. We will not only scrap your car, but sometimes we can salvage it too! Having
been around many damaged and unwanted salvage and scrap vehicles, we have come to
realise that not every car that has been damaged or with a mechanical issue is worth
fixing, sometimes it is better to sell a car than spend money on it. Unlike most other
scrapyards and breaker's yards we have a fixed algorithm designed to correctly fetch you
vehicle information from various databases, to give you the best price possible. Most
scrapyards will simply give you a calculation based on the weight of the scrap metal of
your car, this is how we are different. <a href="#">www.salvageanycar.com</a> was
launched in early 2019
with one simple design point. To help sellers not only get a stress-free service, but
also get the correct price for their vehicles or cars. Statistics show that currently
every year there are two million cars getting salvaged and scrapped. We are aiming for
the moon in picking up our fair share of this industry. We also have other Any Car
Groups under the same umbrella and these are:
</p>
<p>
<a href="#">www.dealanycar.com</a> A simple to use online car buyer's website.
</p>
<p>
<a href="#">www.auctionanycar.com</a> A simple to use online car auction website where
consumers and
companies can buy and sell their vehicles.
</p>
<p>
<a href="#">www.rescueanycar.com</a> A simple to use vehicle recovery website where
consumers can get a
free online quote. All they need to do is enter their registration, pick up and drop off
address and our state of the art software will calculate an accurate price for the trip.
</p>
<p>
<a href="#">www.autochecks.co.uk</a> This is a vehicle history checker designed to get
full details on
any UK registered vehicle. It brings up details on previous owners, M.O.T history,
previous write-offs and much more.
</p>
<p>
<b>If it involves cars it involves us!</b>
Whether you are a consumer or a company, our aim is to be a one stop shop for all. We
work with a variety of companies to get all these jobs done, such as; accident
management companies, breaker yards, auto body repair garages, solicitor'sfirms, car
showrooms, salvage companies and even vehicle recovery companies! We take a lot of pride
in our work and we believe that in the next 5 years we will be the fastest growing
salvage and scrap company in the UK. We have a team filled with highly dedicated,
motivated and friendly members. Providing an excellent service, we take pride in what we
do. Some of our long-term goals consist of launching in the United States then later to
go global!
</p>
<p>
</p>
</div>
<div class="about-content">
<h2>Why choose us?</h2>
<p>
At SalvageAnyCar, we pride ourselves in being different form the rest we believe that
not all damaged cars are a write-off. We pride ourselves in doing our upmost to not only
scrap any car legally, efficiently and effectively, but also in salvaging any car that
can be rescued. The question is why choose us? Well the answer is simple, we are not the
same as any other scrapyard or breaker's yard for one simple reason. We will purchase
your car, not for the weight of the scrap metal, but for the value your car holds. Not
to mention that at SalvageAnyCar we will sort all the paperwork for you. All the
documentation needed for either scrapping your car or re-selling your car will be dealt
with for you so that you have to do nothing other than stay in the comfort of your own
home. What more could you want? Being in the auto business for over 15 years, we pride
ourselves in providing our customers or sellers with a straightforward and legal
process. Take a look below where we discuss these processes in further detail.
</p>
<p>
<b>Any car, any condition, anywhere</b>
We are proud to say that we purchase all types of vehicles, there is no such thing as
too old. Its does not matter if it has been damaged, or if the M.O.T has failed, or even
if it is a non-runner. We are not like other scrap yards or breaker's yards ScrapAnyCar
will always purchase your vehicle based on its value and not by the weight of the scrap
metal, which is the case in most other places. We are so different form all these other
places and can assure you that you will always get the top price for your vehicle.
</p>
<p>
<b>Scrapping your vehicle can seem to be a stressful process</b>
We understand how complex and frustrating a process scrapping any car or vehicle can be,
which is why we offer a free instant online valuation. Our team of professionals are
always at hand to guide you through the process and even discuss everything else that is
involved with you. SalvageAnyCar will handle all the paperwork for you, so you do not
have to. If you are scrapping your car then SalvageAnyCar and our partners will give you
a Certificate of Destruction (CoD), which is issued by the DVLA to the Authorised
Treatment Facility (ATF) When vehicles are destroyed or recycled. Alternatively, if the
vehicle will be used for spare parts or repairs then SalvageAnyCar and partners will
transfer the vehicle'svehicle registration document (V5C) the section 3 (V5C/3) will be
completed and sent to the DVLA to ensure that the vehicle is no longer registered to the
seller. The seller can then claim any outstanding road tax and will no longer receive
any tax reminders or fines regarding the vehicle after the date of this transfer. The
best part about SalvageAnyCar is that this entire process can be completed from the
comfort of your own home!
</p>
</div>
</div>
</div>
</div>
</section>
</section>
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="footer-logo">
<img src="assets/img/logo.png" alt="">
</div>
</div>
<div class="col-md-2">
<div class="footer-items">
<h3>Menu</h3>
<div class="items-main">
<a href="#"><img src="assets/img/footerArrow.png" alt=""> Home</a>
<a href="#"><img src="assets/img/footerArrow.png" alt=""> About</a>
<a href="#"><img src="assets/img/footerArrow.png" alt=""> Services</a>
<a href="#"><img src="assets/img/footerArrow.png" alt=""> Signup</a>
<a href="#"><img src="assets/img/footerArrow.png" alt=""> Login</a>
</div>
</div>
</div>
<div class="col-md-5">
<div class="row">
<div class="col-md-12">
<div class="footer-items">
<h3>Cars We Purchase</h3>
</div>
</div>
<div class="col-md-5">
<div class="footer-items">
<div class="items-main">
<a href="#"><img src="assets/img/footerArrow.png" alt=""> New Vehicles</a>
<a href="#"><img src="assets/img/footerArrow.png" alt=""> Old Vehicles</a>
<a href="#"><img src="assets/img/footerArrow.png" alt=""> High Mileage</a>
<a href="#"><img src="assets/img/footerArrow.png" alt=""> Classic Cars</a>
<a href="#"><img src="assets/img/footerArrow.png" alt=""> Super Cars</a>
</div>
</div>
</div>
<div class="col-md-7">
<div class="footer-items">
<div class="items-main">
<a href="#"><img src="assets/img/footerArrow.png" alt=""> Insurance Write Offs</a>
<a href="#"><img src="assets/img/footerArrow.png" alt=""> Accident Damaged</a>
<a href="#"><img src="assets/img/footerArrow.png" alt=""> Motor Trade Vehicles</a>
<a href="#"><img src="assets/img/footerArrow.png" alt=""> Mechanical Problems</a>
<a href="#"><img src="assets/img/footerArrow.png" alt=""> Imports Vehicles</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="footer-items">
<h3>Contact Us</h3>
<div class="items-main contact">
<a href="#"><i class="fa fa-map-marker"></i> Lorem Ipsum Dummy Text</a>
<a href="#"><i class="fa fa-phone"></i> 03333 580 570</a>
<a href="#"><i class="fa fa-envelope-open"></i> salvage@anycar.com</a>
</div>
</div>
</div>
<div class="col-md-2">
<div class="footer-items">
<h3>Follow Us</h3>
<div class="items-main social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="last-strip hide-on-mobile">
<div class="row">
<div class="col-md-6">
<div class="footer-content">
© 2021 salvageanycar.com | All Rights Reserved
</div>
</div>
<div class="col-md-6">
<div class="footer-content text-right">
<a href="#">Privacy</a>
<a href="#">Terms of Use</a>
<a href="#">Legal</a>
<a href="#">Support Policies</a>
<a href="#">Feedback</a>
</div>
</div>
</div>
</div>
<div class="last-strip show-on-mobile">
<div class="row">
<div class="col-12">
<div class="footer-content text-center">
<a href="#">Privacy</a>
<a href="#">Terms of Use</a>
<a href="#">Legal</a>
<a href="#">Feedback</a>
<a href="#">Support Policies</a>
</div>
</div>
<div class="col-12">
<div class="footer-content mt-2 text-center">
© 2021 salvageanycar.com | All Rights Reserved
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- The Modal -->
<div class="modal" id="signUpModal">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal body -->
<div class="modal-body">
<div class="headingModal">
<h3>Register Here</h3>
<button type="button" class="close times-btn" data-dismiss="modal">×</button>
</div>
<div class="modal-content-main">
<div class="row">
<div class="col-md-6">
<div class="main-input-modal">
<label for="">Company Type</label>
<div class="modal-input">
<select class="form-control">
<option value="">Select Company Type</option>
</select>
</div>
</div>
</div>
<div class="col-md-6">
<div class="main-input-modal">
<label for="">Business Name</label>
<div class="modal-input">
<input type="text" class="form-control" placeholder="Enter Business Name">
</div>
</div>
</div>
<div class="col-md-6">
<div class="main-input-modal">
<label for="">Business Address</label>
<div class="modal-input">
<input type="text" class="form-control" placeholder="Enter Business Address">
</div>
</div>
</div>
<div class="col-md-6">
<div class="main-input-modal">
<label for="">Postcode</label>
<div class="modal-input">
<input type="text" class="form-control" placeholder="Enter Postcode">
</div>
</div>
</div>
<div class="col-md-6">
<div class="main-input-modal">
<label for="">Phone Number</label>
<div class="modal-input">
<input type="text" class="form-control" placeholder="Enter Phone Number">
</div>
</div>
</div>
<div class="col-md-6">
<div class="main-input-modal">
<label for="">VAT Register No</label>
<div class="modal-input">
<input type="text" class="form-control" placeholder="Enter VAT Register No">
</div>
</div>
</div>
<div class="col-md-6">
<div class="main-input-modal">
<label for="">Business Email</label>
<div class="modal-input">
<input type="text" class="form-control" placeholder="Enter Business Email">
</div>
</div>
</div>
<div class="col-md-6">
<div class="main-input-modal">
<label for="">Business Website URL</label>
<div class="modal-input">
<input type="text" class="form-control"
placeholder="Enter Business Website URL">
</div>
</div>
</div>
<div class="col-md-6">
<div class="main-input-modal">
<label for="">Password</label>
<div class="modal-input">
<input type="password" class="form-control" placeholder="Enter Password">
</div>
</div>
</div>
<div class="col-md-6">
<div class="main-input-modal">
<label for="">Confirm Password</label>
<div class="modal-input">
<input type="text" class="form-control" placeholder="Enter Confirm Password">
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3"></div>
<div class="col-md-6">
<div class="main-input-modal">
<div class="checkbox-option">
<label class="form-check-label">
<span>
<input type="checkbox" name="same" class="form-check-input" value="">
<i class="for-checkboxUi fa fa-check"></i>
<span>
Accept Terms & conditions
</span>
</span>
</label>
</div>
<div class="modal-input">
<button class="btn btn-block">Submit</button>
</div>
</div>
</div>
<div class="col-md-3"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="assets/js/jquery.js"></script>
<!-- UIkit JS -->
<script src="assets/js/uikit.min.js"></script>
<script src="assets/js/uikit-icons.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.0.4/popper.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script src="./assets/js/custom.js"></script>
<script>
AOS.init({
duration: 2000,
});
</script>
</body>
</html>