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
|
<footer> <div class="mainWrapper"> <div class="row"> <div class="col-lg-6"> <div class=" d-flex align-items-end"> <a href="index.php" class="footerLogo logoImg mr-2"><img src="../assets/images/logo.svg" class="img-fluid"></a> <p class="m-0">Centre for Advances in<br /> Reliability and Safety</p> </div> <div class="footerMenu"> <!-- <a href="#" class="whiteFont"><i class="fab fa-instagram"></i> </a> --> <a href="https://www.facebook.com/CAiRSHongKong" 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"> <p class="blod fontUppercase">INFORMATION</p> <a href="about.php" class="d-block">About us</a> <a href="why_cairs.php" class="d-block" title="Why CAiRS">Why CAiRS</a> <a href="how_work.php" class="d-block" title="How CAiRS works">How CAiRS works</a> <a href="cairs_equipment.php" class="d-block" title="CAiRS Equipment">CAiRS Equipment</a>
</div> <div class="col-lg-2 mobileBorderTop mb-4 pl-4"> <p class="blod fontUppercase">Resource</p> <a href="news.php" class="d-block ">Event & News</a>
<a href="media.php" class="d-block">Media Centre</a> <a href="publication.php" class="d-block">Publication</a>
</div> <div class="col-lg-2 mobileBorderTop mb-4 pl-4"> <p class="blod fontUppercase">Contact Us</p> <a href="contact.php" class="d-block">Contact</a> <!-- <a href="privacy.php" class="d-block whiteFont">Privacy policy</a> <a href="term.php" class="d-block whiteFont">Terms & conditions </a> -->
</div>
</div> </div> </footer>
<div class="ci text-center blueDeepBgColor whiteFont">© Centre for Advances in Reliability and Safety.</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>
|