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
|
<footer> <div class="mainSmallWrapper"> <div class="row"> <div class="col-lg-5"> <div class="footerLogo mb-4"> <a href="index.php" class="footerLogo logoImg mr-2" title="footerLogo"><img src="../assets/images/logo_w.svg" class="img-fluid" alt="logo"></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-primary subscribeBtn" type="button" title="Subscribe">Subscribe</button> </div> </div>
</div> <div class="footerMenu mb-4"> <a href="https://www.instagram.com/alphastephk/" target="_blank" class="whiteFont"><i class="fab fa-instagram"></i> </a> <a href="https://www.facebook.com/AlphaStepHK/" target="_blank" class="whiteFont" traget="_blank"><i class="fab fa-facebook"></i> </a> <a href="#" class="whiteFont"><i class="fab fa-youtube"></i> </a> </div> </div> <div class="col-lg-2 mb-4 pl-4 ml-auto"> <p class="blod fontUppercase yellowFont">Explore</p> <a href="about.php" class="d-block whiteFont" title="Home">Home
</a> <a href="about.php" class="d-block whiteFont" title="About Us"> About Us </a>
<a href="service.php" class="d-block whiteFont" title="Services"> Services </a>
<a href="news_list.php" class="d-block whiteFont" title="What's News"> What's News </a> <a href="out_team.php" class="d-block whiteFont" title="Our Team"> Our Team </a> <a href="media.php" class="d-block whiteFont" title="Media"> Media </a> <a href="contact.php" class="d-block whiteFont" title="Contact Us"> Contact Us </a> </div>
<div class="col-lg-2 mobileBorderTop mb-4 pl-4"> <p class="blod fontUppercase yellowFont" title="Products">RESOURCES</p> <a href="careers.php" class="d-block whiteFont" title="Careers">Careers</a> <a href="faq.php" class="d-block whiteFont" title="FAQs">FAQs </a>
<a href="term.php" class="d-block whiteFont" title="Terms">Terms of Use </a>
<a href="privacy.php" class="d-block whiteFont" title="Privacy">Privacy Policy </a> </div> <div class="col-lg-3 mobileBorderTop mb-4 pl-4"> <p class="blod fontUppercase yellowFont">Contact Us</p>
<ul class="iconList"> <li class="whiteFont"> <i class="fas fa-map-marker-alt"></i> G20 & G21A, Ground Floor, Monterey Place, 23 Tong Chun St, Tseung Kwan O </li> <li class="whiteFont"> <i class="fas fa-phone"></i> (852) 3791 2626 </li> <li class="whiteFont"> <a href="mailTo:info@alphastep.com.hk" class="d-inlink-block whiteLink"><i class="fas fa-envelope"></i> info@alphastep.com.hk</a> </li> <li class="whiteFont"> <a href="https://wa.me/63681045" target="_blank" class="d-inlink-block whiteLink"><i class="fab fa-whatsapp"></i> 6368 1045 </a> </li> </ul>
</div>
</div> </div> </footer>
<div class="ci text-center"> <div class="small"> © 2020 Alphastep. All Rights Reserved. </div>
</div>
<!-- Modal --> <div class="modal fade" id="Enrol" tabindex="-1" role="dialog" aria-labelledby="Enrol" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-lg" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center">
<p class="h1 mb-4">Please Select Your Service </p> <div class="form-group"> <select name="" class="custom-select form-control halfWidth"> <option selected disabled>Service</option> <option value="Individual">Individual Services</option> <option value="Groups">For Group </option> <option value="Event">For Event & Partnership </option> </select> </div> <button class="roundBtn btn-primary big mt-4 halfWidth mb-4" onclick="window.open('https://www.google.com/drive/','_blank')">Submit</button>
</div>
</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>
|