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
|
<footer class="blueDeepBgColor"> <div class="mainWrapper"> <div class="row"> <div class="col-lg-5"> <div class="footerLogo mb-2"> <a href="index.php" class="footerLogo logoImg mr-2" title="footerLogo"><img src="../assets/images/logo_w.png" class="img-fluid"></a>
</div> <div class="subscribe"> <label class="whiteFont">Subscribe to Our Newsletter</label> <div class="input-group"> <input type="text" class="form-control" placeholder="Enter your Email" aria-label="Enter your Email" aria-describedby="basic-addon2"> <div class="input-group-append"> <button class="btn btn-secondary" type="button">Subscribe</button> </div> </div>
</div> <div class="footerMenu mb-4"> <!-- <a href="#" class="whiteFont"><i class="fab fa-instagram"></i> </a> --> <a href="https://www.facebook.com/CAiRSHongKong" class="whiteFont" traget="_blank"><i class="fab fa-facebook"></i> </a> <!-- <a href="#" class="whiteFont"><i class="fab fa-twitter"></i> </a> --> </div> </div> <div class="col-lg-2 mb-4 pl-4 ml-auto"> <p class="blod fontUppercase whiteFont">Company</p> <a href="about.php" class="d-block whiteFont" title="About Us">About Us </a>
<a href="news.php" class="d-block whiteFont">Products Search </a>
<a href="media.php" class="d-block whiteFont">Market Trend</a> <a href="why_cairs.php" class="d-block whiteFont" title="Our Team">Our Team</a> </div>
<div class="col-lg-2 mobileBorderTop mb-4 pl-4"> <p class="blod fontUppercase whiteFont" title="Products">RESOURCES</p> <a href="contact.php" class="d-block whiteFont">Contact Us</a> <a href="news.php" class="d-block whiteFont">FAQ </a>
<a href="media.php" class="d-block whiteFont">Site Map</a>
</div> <div class="col-lg-3 mobileBorderTop mb-4 pl-4"> <p class="blod fontUppercase whiteFont">KEEP IN TOUCH</p>
<ul class="iconList"> <li class="whiteFont"> <i class="fas fa-map-marker-alt"></i> Unit 1212-1213, 12/F, Building 19W, Hong Kong Science Park, Pak Shek Kok, NT, Hong Kong </li> <li class="whiteFont"> <i class="fas fa-phone"></i> +852 2162-5161 </li> <li class="whiteFont"> <a href="mailTo:info@cairs.hk" class="d-inlink-block whiteLink"><i class="fas fa-envelope"></i> info@Shipvago.hk</a> </li> </ul>
</div>
</div> </div> </footer>
<div class="ci"> <div class="d-flex justify-content-between flex-lg-row flex-column"> <div class=""> <a href="term.php" class="small">Terms of Service</a> <span>|</span> <a href="privacy.php" class="small">Privacy Policy</a> </div>
<div class="small"> Copyright © 2010-2020 Shipvago All rights reserved. </div> </div> </div> <a href="javascript:void(0);" class="scrollToTop" title="To Top"><i class="fas fa-chevron-up"></i></a> <script type="text/javascript" src="../assets/js/custom.js?<?= rand(1,10000)/7; ?>"></script> <!-- custom JS -->
<script> $(window).scroll(function() { if ($(this).scrollTop() >= 50) { // If page is scrolled more than 50px $(".scrollToTop").fadeIn(200); // Fade in the arrow } else { $(".scrollToTop").fadeOut(200); // Else fade out the arrow } });
$(".scrollToTop").click(function() { $("html, body").animate({ scrollTop: 0 }, 800); return false; }); </script>
|