-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
955 lines (711 loc) · 32.2 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
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hwa Chong Homecoming 2015</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0" />
<link href="font-awesome-4.2.0/css/font-awesome.min.css" rel="stylesheet" />
<link href="scripts/jquery-ui-1.11.2/jquery-ui.min.css" rel="stylesheet" />
<link href="animate.min.css" rel="stylesheet" />
<link href="style.css" rel="stylesheet" type="text/css" />
<!-- Google Map -->
<script src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script>
function initialize() {
var myLatlng = new google.maps.LatLng(1.329025, 103.8022958);
var map_options = {
zoom: 16,
mapTypeId: google.maps.MapTypeId.ROADMAP,
center: myLatlng,
scrollwheel: false,
disableDefaultUI: true
}
var map = new google.maps.Map(document.getElementById('map_canvas'), map_options)
var myIcon = new google.maps.MarkerImage('images/map_icon.png', null, null, null, new google.maps.Size(36,54));
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
icon: myIcon
});
/* Remove if you dont want B/W Google Map */
/*
var styles = [
{
featureType: "all",
stylers: [
{ saturation: -100 }
]
}
];
map.setOptions({styles: styles});
*/
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<!-- Google Map Ends! -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-65686692-1', 'auto');
ga('require', 'linkid', 'linkid.js');
ga('send', 'pageview');
</script>
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','//connect.facebook.net/en_US/fbevents.js');
fbq('init', '105358706476172');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=105358706476172&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
</head>
<body>
<div class="page">
<!-- header -->
<div class="header">
<!-- menu -->
<!--div class="menu">
<ul>
<li><a href="#speakers">speakers</a></li>
<li><a href="#schedule">schedule</a></li>
<li><a href="#registration">registration</a></li>
<li><a href="#sponsors">sponsors</a></li>
<li><a href="#location">location</a></li>
<li><a href="#contact" class="open-contact-form">contact us</a></li>
</ul>
</div-->
<!-- menu ends! -->
<!-- header container -->
<div class="container">
<div>
<!-- logo or main heading -->
<h1><a href="#intro" class="link-scroll">Hwa Chong Homecoming 2015</a></h1>
<!-- logo or main heading ends! -->
<!-- subtitle -->
<p class="subtitle">15 alumni speakers, 4 networking groups, a foodfest/bazaar, tours & games,<br/>and <strong><a href="#intro" class="link-scroll">old friends & new</a></strong>.</p>
<!-- subtitle ends! -->
</div>
<!-- when -->
<div class="when">
<div class="icon-holder">
<i class="fa fa-calendar"></i>
</div>
<div>
<p><strong>When</strong></p>
<p><span>Sat, 1st August 2015</span><br />10am – 4pm</p>
</div>
</div>
<!-- when ends!-->
<!-- where -->
<div class="where">
<div class="icon-holder">
<i class="fa fa-map-marker"></i>
</div>
<div>
<p><strong>Where</strong></p>
<p><span>Hwa Chong Swimming Complex</span><br /><a id="link-directions" href="#location" class="link-scroll">Map & Directions</a></p>
</div>
</div>
<!-- where ends! -->
<!-- register -->
<div class="register-now">
<p>Free admission // Coupons ($20) for food/games on sale!</p>
<a id="link-register-1" href="#registration" class="button">Register Now</a>
</div>
<!-- register ends! -->
</div>
<!-- header container ends! -->
</div>
<!-- header ends! -->
<!-- topics -->
<div id="intro" class="topics">
<div class="container">
<h3><strong>Reconnect with old friends and the Hwa Chong spirit</strong><br />at the inaugural Homecoming for the Hwa Chong family of schools.</h3>
<p><strong>UPDATE: Admission is free and full speaker details are available.</strong></p>
<p>That shared uniform made us family. Now our family is making waves in a range of fields and professions. Come listen to fellow alumni share about their journeys and how their time in Hwa Chong shaped them, at the first ever Hwa Chong Alumni Homecoming event. It's a time for the entire HC Family - students, staff, alumni, friends & family of all HC schools - to come together, catch up, and celebrate the HC Spirit.</p>
<p>This August, the Hwa Chong Alumni Association is proud to present to you Homecoming 2015, where we can gather once again as a family. We'll talk, we'll laugh, we'll eat together. Just like old times.</p>
<!-- single topic -->
<div>
<i class="fa fa-lightbulb-o fa-2x"></i>
<h4>Talks by Distinguished Alumni</h4>
<p>Hear and be inspired by alumni who have achieved success in a range of fields. We are proud to have them return for this occasion to share their knowledge and experiences!</p>
<a id="link-speakers-1" href="speakers.html" target="_blank" class="button speaker-button">Full speaker details</a>
</div>
<!-- single topic ends! -->
<!-- single topic -->
<div>
<i class="fa fa-users fa-2x"></i>
<h4>Sharing & Networking</h4>
<p>Meet old schoolmates and other alumni based on Finance, Entrepreneurship & Education interest groups. We've invited alumni in various fields to give short talks about their interests and businesses, to get the conversations started!</p>
</div>
<!-- single topic ends! -->
<!-- single topic -->
<div>
<i class="fa fa-glass fa-2x"></i>
<h4>Foodfest/Bazaar, Tours & Funfair</h4>
<p>Hwachongians are big in business and F&B. Enjoy delicacies from stalls set up by alumni-linked businesses such as JUMBO Seafood, find out what other businesses alumni are running, take a shot at funfair games, and go on a nostalgic campus tour.</p>
</div>
<!-- single topic ends! -->
</div>
</div>
<!-- topics ends! -->
<a id="speakers" class="anchor"></a>
<!-- speakers -->
<div class="speakers">
<div class="container">
<h2>Speakers & Activities</h2>
<p class="subtitle">Learn what our alumni have been doing</p>
<!-- featured -->
<div class="featured">
<div class="image">
<img src="images/SimAnnPortrait-small.jpg" alt="" />
</div>
<div>
<h3>Guest of Honour: <strong>Ms Sim Ann</strong></h4>
<p class="title">Minister of State, MOE & MCI</p>
<p>Ms Sim Ann is a well-known face in Singapore's political scene. She received a President's Scholarship to study at Oxford University and held positions in MOH, MHA, MTI and IE Singapore before leaving the Civil Service to successfully contest in the General Election of 2011. Since her election as an MP for Holland-Bukit Timah GRC, she has rapidly risen to become Minister of State in two ministries. She has three children.</p>
<p>Ms Sim will speak about how Hwa Chong has contributed to Singapore in the past 50 years, and also plant a tree on the school grounds.</p>
</div>
</div>
<!-- featured ends! -->
<!-- speaker -->
<div class="single">
<img src="images/TanSuShan-small.jpg" alt="" />
<div>
<h3>Tan Su Shan</h3>
<p><strong>MD & Group Head, DBS Group</strong></p>
<p>An alumna of Oxford University and a former NMP, Ms Tan held major roles in Morgan Stanley and Citi Private Bank. She serves in a wide array of public and charitable associations.</p>
<p><a href="#"><i class="fa fa-twitter fa-lg"></i></a> <a href="#"><i class="fa fa-linkedin fa-lg"></i></a></p>
</div>
</div>
<!-- speaker ends! -->
<!-- speaker -->
<div class="single">
<img src="images/ArthurLang-small.jpg" alt="" />
<div>
<h3>Arthur Lang</h3>
<p><strong>Group CFO, CapitaLand</strong></p>
<p>Mr Lang attended Harvard University and rose to hold key roles in Morgan Stanley in Hong Kong and Singapore. He now holds the fort as Group CFO of CapitaLand, one of Southeast Asia's largest property companies.</p>
</div>
</div>
<!-- speaker ends! -->
<!-- speaker -->
<div class="single">
<img src="images/DesmondOng-small.jpg" alt="" />
<div>
<h3>Desmond<br />Ong</h3>
<p><strong>CEO, Galmon Pte Ltd</strong></p>
<p>Mr Ong is Chairman of the Hwa Chong Alumni Association and the Board Of Governors of Hwa Chong Institution. He is CEO of Galmon Pte Ltd.</p>
</div>
</div>
<!-- speaker ends! -->
<!-- speaker -->
<div class="single">
<img src="images/CKKho-small.jpg" alt="" />
<div>
<h3>Kho Choon Keng</h3>
<p><strong>Executive Chairman, Lian Huat Group</strong></p>
<p>A President's Scholar with first-class honours from King's College London, Mr Kho served in the Civil Service, oversaw Lian Huat Group's modernisation, and serves in many public causes.</p>
</div>
</div>
<!-- speaker ends! -->
<!-- speaker -->
<div class="single">
<img src="images/HoRenHua-small.jpg" alt="" />
<div>
<h3>Ho Ren Hua</h3>
<p><strong>VP/Executive Director, Banyan Tree Holdings</strong></p>
<p>As Country Head, China, Mr Ho focuses on growing Banyan Tree's China portfolio. He graduated from the Wharton School (U. of Penn.) and worked for Bain & Co. in New York, Hong Kong & China.</p>
</div>
</div>
<!-- speaker ends! -->
<!-- speaker -->
<div class="single">
<img src="images/networking.jpg" alt="" />
<div>
<h3>Sharing &<br />Networking</h3>
<p><strong></strong></p>
<p>A range of alumni will share on topics spanning art, business/entrepreneurship, investing, education, and volunteerism, interspersed with time for attendees to mingle.</p>
</div>
</div>
<!-- speaker ends! -->
<!-- speaker -->
<div class="single">
<img src="images/JUMBO-small.jpg" alt="JUMBO crab" />
<div>
<h3>Foodfest &<br />Bazaar</h3>
<p><strong>Alumni-linked companies</strong></p>
<p>Among others, JUMBO Seafood and other alumni-run stalls will provide a spread of delicacies and products for attendees.</p>
</div>
</div>
<!-- speaker ends! -->
<!-- speaker -->
<div class="single">
<img src="images/funfair.jpg" alt="" />
<div>
<h3>Tours &<br />Funfair</h3>
<p><strong></strong></p>
<p>Games stalls, a photobooth, and tours of the campus.</p>
</div>
</div>
<!-- speaker ends! -->
<p class="subtitle pad-top-only">Additional speakers</p>
<p class="desc">Including additional alumni speakers in the following areas:<br/><br/>
<strong>Business & entrepreneurship</strong>: Ho Ren Hua, Dr James Fu<br/>
<strong>Education/career path</strong>: Paul Tan, Prof Tee Shang-You, Steffan Fung<br/>
<strong>Personal finance</strong>: Jack Wang, Mou Li, Philip Teo<br/>
<strong>Child education</strong>: Eugene Seah<br/>
<strong>Art</strong>: Diana Lee
</p>
<p class="desc"><a id="link-speakers-2" href="speakers.html" target="_blank" class="button">Full speaker details</a></p>
</div>
</div>
<!-- speakers ends! -->
<a id="schedule" class="anchor"></a>
<!-- schedule -->
<div class="schedule">
<div class="container">
<h2>Schedule</h2>
<p class="subtitle">Packed with chances to learn & connect</p>
<div class="tabs">
<ul>
<li><a id="link-tabs-main" href="#tabs-1">Main activities</a></li>
<li><a id="link-tabs-side" href="#tabs-2">Foodfest, bazaar, Q&A & tours</a></li>
</ul>
<!-- day -->
<div id="tabs-1" class="day">
<!-- single event -->
<div class="event">
<!-- event time -->
<div class="event-time">9.30 - 10am <span></span></div>
<!-- event time ends! -->
<!-- event details -->
<div class="event-info">
<div>
<h4>Registration</h4>
</div>
</div>
<!-- event details ends! -->
</div>
<!-- single event ends! -->
<!-- single event -->
<div class="event">
<!-- event time -->
<div class="event-time">9.45 - 10am <span></span></div>
<!-- event time ends! -->
<!-- event details -->
<div class="event-info">
<div>
<h4>Tree-Planting Ceremony by Minister Sim Ann</h4>
</div>
</div>
<!-- event details ends! -->
</div>
<!-- single event ends! -->
<!-- single event -->
<div class="event extend">
<!-- event time -->
<div class="event-time">10 - 11am <span><i class="fa fa-angle-up"></i></span></div>
<!-- event time ends! -->
<!-- event details -->
<div class="event-info">
<div>
<h4><a href="#">Opening Ceremony & Speeches</a></h4>
<p class="speaker"><strong>Chairmen of School Organisations & Minister Sim Ann</strong><br/>HCIS Student Hub</p>
<p><img src="images/SimAnn-small.jpg" alt="" />
- Introduction by Chairman of the Hwa Chong Homecoming Committee<br/>
- Welcome Address by the Chairman of the Hwa Chong Alumni Association<br/>
- Singing of the School Songs<br/>
- Speech by Ms Sim Ann on “How Hwa Chong has contributed to Singapore in the last 50 years”<br/>
- Speech by Chairman of the Board of Directors of Hwa Chong Institution<br/>
</p>
</div>
</div>
<!-- event details ends! -->
</div>
<!-- single event ends! -->
<!-- single event -->
<div class="event extend">
<!-- event time -->
<div class="event-time">11am - 12pm<span><i class="fa fa-angle-up"></i></span></div>
<!-- event time ends! -->
<!-- event details -->
<div class="event-info">
<div>
<h4><a href="#">Panel 1: The Impact of Hwa Chong on Our Personal and Professional Success</a></h4>
<p class="speaker"><strong>Arthur Lang & Tan Su Shan - moderated by Joel Teo</strong><br/>HCIS Student Hub</p>
<p><a id="link-speakers-3a-panel1" href="speakers.html" target="_blank" class="button speaker-button">Full speaker details</a></p>
</div>
</div>
<!-- event details ends! -->
</div>
<!-- single event ends! -->
<!-- single event -->
<div class="event">
<!-- event time -->
<div class="event-time">12 - 1pm<span></span></div>
<!-- event time ends! -->
<!-- event details -->
<div class="event-info">
<div>
<h4>Lunch Break & Pop-Up Performance</h4>
</div>
</div>
<!-- event details ends! -->
</div>
<!-- single event ends! -->
<!-- single event -->
<div class="event extend">
<!-- event time -->
<div class="event-time">1 - 2pm<span><i class="fa fa-angle-up"></i></span></div>
<!-- event time ends! -->
<!-- event details -->
<div class="event-info">
<div>
<h4><a href="#">Panel 2: How Hwa Chong Shaped Our Entrepreneurial Journeys</a></h4>
<p class="speaker"><strong>Desmond Ong, Kho Choon Keng & a member of the BOD of HCI - moderated by Joel Teo</strong><br/>HCIS Student Hub</p>
<p><a id="link-speakers-3b-panel2" href="speakers.html" target="_blank" class="button speaker-button">Full speaker details</a></p>
</div>
</div>
<!-- event details ends! -->
</div>
<!-- single event ends! -->
<!-- single event -->
<div class="event">
<!-- event time -->
<div class="event-time">2 - 2.15pm<span></span></div>
<!-- event time ends! -->
<!-- event details -->
<div class="event-info">
<div>
<h4>Tea Break & Pop-Up Performance</h4>
</div>
</div>
<!-- event details ends! -->
</div>
<!-- single event ends! -->
<!-- single event -->
<div class="event extend">
<!-- event time -->
<div class="event-time">2.15 - 2.35pm<span><i class="fa fa-angle-up"></i></span></div>
<!-- event time ends! -->
<!-- event details -->
<div class="event-info">
<div>
<h4><a href="#">Sharing Sessions 1 - 4: Business in China / First Class in Law / Value Investing / Creative Thinking for Children</a></h4>
<p class="speaker"><strong>Ho Ren Hua, Paul Tan, Jack Wang, Eugene Seah</strong><br/>Classrooms</p>
<p><strong>Ho Ren Hua</strong>: My journey at Banyan Tree & doing business in China</p>
<p><strong>Paul Tan</strong>: How I got my first class without attending much of law school</p>
<p><strong>Jack Wang</strong>: Value investing in the digital age</p>
<p><strong>Eugene Seah</strong>: How to empower your child to think more creatively and speak more confidently</p>
<p><a id="link-speakers-3c-share1" href="speakers.html" target="_blank" class="button speaker-button">Full speaker details</a></p>
</div>
</div>
<!-- event details ends! -->
</div>
<!-- single event ends! -->
<!-- single event -->
<div class="event extend">
<!-- event time -->
<div class="event-time">2.35 - 2.55pm<span><i class="fa fa-angle-up"></i></span></div>
<!-- event time ends! -->
<!-- event details -->
<div class="event-info">
<div>
<h4><a href="#">Sharing Sessions 5 - 8: Getting into Harvard / Entrepreneurship & Driverless Cars / Sports, Business, Volunteerism / Investing Wisely in 2015/2016</a></h4>
<p class="speaker"><strong>Prof Tee Shang-You, Dr James Fu, Steffan Fung, Mou Li</strong><br/>Classrooms</p>
<p><strong>Prof Tee Shang-You</strong>: How to apply and get into Harvard with a C+ average</p>
<p><strong>Dr James Fu</strong>: Entrepreneurship & driverless cars</p>
<p><strong>Steffan Fung</strong>: Being the best you can be - sports, business and volunteerism</p>
<p><strong>Mou Li</strong>: Investing wisely in 2015/2016</p>
<p><a id="link-speakers-3d-share2" href="speakers.html" target="_blank" class="button speaker-button">Full speaker details</a></p>
</div>
</div>
<!-- event details ends! -->
</div>
<!-- single event ends! -->
<!-- single event -->
<div class="event extend">
<!-- event time -->
<div class="event-time">2.55 - 3.15pm<span><i class="fa fa-angle-up"></i></span></div>
<!-- event time ends! -->
<!-- event details -->
<div class="event-info">
<div>
<h4><a href="#">Sharing Sessions 9 - 10: Collecting Art / Improving Returns using Technical Analysis</a></h4>
<p class="speaker"><strong>Diana Lee, Philip Teo</strong><br/>Classrooms</p>
<p><strong>Diana Lee</strong>: Collecting art</p>
<p><strong>Philip Teo</strong>: How to improve your investment returns using technical analysis</p>
<p><a id="link-speakers-3e-share3" href="speakers.html" target="_blank" class="button speaker-button">Full speaker details</a></p>
</div>
</div>
<!-- event details ends! -->
</div>
<!-- single event ends! -->
<!-- single event -->
<div class="event">
<!-- event time -->
<div class="event-time">3.15 - 3.30pm<span></span></div>
<!-- event time ends! -->
<!-- event details -->
<div class="event-info">
<div>
<h4>Break & Pop-Up Performance</h4>
</div>
</div>
<!-- event details ends! -->
</div>
<!-- single event ends! -->
<!-- single event -->
<div class="event">
<!-- event time -->
<div class="event-time">3.30 - 4.30pm<span></span></div>
<!-- event time ends! -->
<!-- event details -->
<div class="event-info">
<div>
<h4>Networking & Lucky Draw</h4>
<p class="speaker">Atrium</p>
</div>
</div>
<!-- event details ends! -->
</div>
<!-- single event ends! -->
</div>
<!-- day ends! -->
<!-- day -->
<div id="tabs-2" class="day">
<!-- single event -->
<div class="event">
<!-- event time -->
<div class="event-time">11am - 4.30pm<span></span></div>
<!-- event time ends! -->
<!-- event details -->
<div class="event-info">
<div>
<h4>Foodfest, Bazaar & Games stalls open</h4>
<p class="speaker"><strong>Alumni-linked companies</strong><br/>Atrium</p>
</div>
</div>
<!-- event details ends! -->
</div>
<!-- single event ends! -->
<!-- single event -->
<div class="event">
<!-- event time -->
<div class="event-time">2.30 - 3.30pm<span></span></div>
<!-- event time ends! -->
<!-- event details -->
<div class="event-info">
<div>
<h4>Screening: HCI Corporate Video</h4>
<p class="speaker">HCIS Student Hub</p>
</div>
</div>
<!-- event details ends! -->
</div>
<!-- single event ends! -->
<!-- single event -->
<div class="event extend">
<!-- event time -->
<div class="event-time">2.30 - 3.30pm<span><i class="fa fa-angle-up"></i></span></div>
<!-- event time ends! -->
<!-- event details -->
<div class="event-info">
<div>
<h4><a href="#">Q&A with Teachers from Hwa Chong International School</a></h4>
<p class="speaker">Around Staff Room</p>
<p>Teachers will be around to answer any questions about HCIS, the newest member of the Hwa Chong family.</p>
</div>
</div>
<!-- event details ends! -->
</div>
<!-- single event ends! -->
</div>
<!-- day ends! -->
</div>
</div>
</div>
<!-- schedule ends! -->
<a id="registration" class="anchor"></a>
<!-- registration -->
<div class="registration">
<div class="container">
<h2>Tickets</h2>
<p class="subtitle"><strong>Free admission</strong> Buy coupons online or at the Reception</p>
<p class="desc">Admission is free to all, but we're selling $20 coupons for you to spend on food, bazaar products and funfair games. We suggest buying coupons now to avoid long queues for coupons on the event day.</p>
<p class="desc">If you'd like to attend the event but are <u>unsure if you want to buy coupons now</u>: on the ticket ordering page, please select the option <strong>"General - buy coupons at reception"</strong>.</p>
<p class="desc">Student Councillors and CCA Leaders (past & present): we're also holding a reunion sub-event for you. On the ticket ordering page, please select the option "CCA Leader / Student Councillor (past or current)" if you'd like to attend.</p>
<div class="form">
<form action="http://buytickets.at/hwachongalumniassociation/30536" target=new>
<button id="buy-button" class="button-large">Register and buy coupons online</button>
</form>
</div>
<!-- <h3>Fill out your information</h3> -->
<!-- register form
<div class="form">
<form action="" method="post">
<input type="text" name="firstname" placeholder="First Name"/>
<input type="text" name="lastname" placeholder="Last Name"/>
<input type="text" name="email" placeholder="Email"/>
<input type="text" name="address" placeholder="Address"/>
<input type="text" name="zip" placeholder="Zip Code"/>
<input type="text" name="city" placeholder="City"/>
<input type="text" name="program" id="program" placeholder="Select your program on the right" disabled="disabled" />
<button name="submit" type="submit">Confirm Your Order</button>
</form>
</div>
<!-- register form ends! -->
<!-- prices
<div class="price">
<div>
<p class="amount">$330</p>
<h4>Early Bird <span>Save NOW</span></h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ac mollis risus. Nulla ornare ipsum id lacus vehicula sit amet euismod nibh sagittis.</p>
</div>
<div>
<p class="amount">$350</p>
<h4>Conference</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ac mollis risus. Nulla ornare ipsum id lacus vehicula sit amet euismod nibh sagittis.</p>
</div>
<div>
<p class="amount">$500</p>
<h4>Conference + Workshops</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ac mollis risus. Nulla ornare ipsum id lacus vehicula sit amet euismod nibh sagittis.</p>
</div>
</div>
<!-- prices ends! -->
</div>
</div>
<!-- registration ends! -->
<a id="sponsors" class="anchor"></a>
<!-- sponsors -->
<div class="sponsors">
<div class="container">
<h2>Sponsors & Partners</h2>
<p class="subtitle">Our deepest thanks to the following organisations</a></p>
<div class="slides">
<ul>
<li><a href="#"><img src="images/logo-JUMBO.jpg" /></a></li>
</ul>
</div>
</div>
</div>
<!-- sponsors ends! -->
<a id="location" class="anchor"></a>
<!-- location -->
<div class="location">
<div class="container dark-text">
<h2>Venue & Map</h2>
<p class="subtitle">Hwa Chong Swimming Complex</p>
<!-- info -->
<div class="info">
<div class="maps">
<div class="images">
<img src="images/hc-swimming-complex-hcis-student-hub.jpg" />
</div>
<!-- do not remove, needed for Google Map -->
<div id="map_canvas"></div>
<!-- do not remove ends! -->
</div>
<div class="address">
<h4>The various activities will all take place within the Hwa Chong Swimming Complex: in the Student Hub, atrium/staircase area, and classrooms. Ushers will be present to direct you.</h4>
<h5><i class="fa fa-chevron-right"></i> Venue</h5>
<div class="venue">
<p><span>Hwa Chong Swimming Complex</span></p>
<p>681 Bukit Timah Road</p>
<p>Singapore 269782</p>
<a id="link-gmaps" href="https://www.google.com.sg/maps/place/Hwa+Chong+Swimming+Complex/@1.3288855,103.7281864,12z/data=!4m6!1m3!3m2!1s0x0000000000000000:0x1103a2e8d3c21bfc!2sHwa+Chong+Swimming+Complex!3m1!1s0x0000000000000000:0x1103a2e8d3c21bfc" target=new>View on Google Maps</a><br/>
<a id="link-gothere" href="http://gothere.sg/maps#q:681%20Bukit%20Timah%20Road" target=new>View on gothere.sg</a>
</div>
<h5><i class="fa fa-chevron-right"></i> Parking</h5>
<div class="venue">
<p><span>HCI Carparks</span></p>
<p>Limited parking is available. We encourage you to take public transport or park away from the school.</p>
</div>
<h5><i class="fa fa-chevron-right"></i> Public Transport</h5>
<p><strong>Bus services</strong>: 66, 67, 74, 151, 154, 156, 157, 170, 171, 174, 852, 961, 961C.</p>
<p><strong>Circle Line MRT</strong>: Botanic Gardens Station.</p>
</div>
</div>
<!-- info ends! -->
</div>
</div>
<!-- location ends! -->
<!-- social -->
<div class="social">
<div class="container">
<div>
<h2>Connect with the HC Alumni Association</h2>
<p class="subtitle">Email us event enquiries at <strong>[email protected]</strong></p>
<p class="subtitle">Join the Hwa Chong Alumni Facebook Group</p>
<a id="link-fb" href="https://www.facebook.com/groups/19919296171/" target=new><i class="fa fa-facebook"></i></a>
</div>
</div>
</div>
<!-- social ends! -->
<!-- footer -->
<div class="footer">
<div class="container">
<p>Copyright 2015 <a id="link-hcaaweb" href="http://hcalumni.sg">Hwa Chong Alumni Association</a></p>
</div>
</div>
<!-- footer ends! -->
</div>
<!-- back to top -->
<div class="back">
<div class="container">
<a href="#top"><i class="fa fa-angle-up fa-3x"></i></a>
</div>
</div>
<!-- back to top ends! -->
<!-- contact form overlay popup -->
<div class="overlay" style="display: none;">
<div class="contact-form">
<h3>Contact Us</h3>
<p>We will get back to you as soon as possible</p>
<!-- contact form -->
<div class="form">
<form action="contact.php" method="post">
<input type="text" name="name" placeholder="Name"/>
<input type="text" name="email" placeholder="Email"/>
<textarea name="message" placeholder="Message"></textarea>
<button name="submit" type="submit">Send Message</button>
</form>
</div>
<!-- contact form ends! -->
<!-- Do Not Remove! -->
<p class="error"></p>
<p class="message"></p>
<!-- Do Not Remove! Ends! -->
<a href="#" class="close-contact-form"><i class="fa fa-times fa-lg"></i></a>
</div>
</div>
<!-- contact form overlay popup ends! -->
<!-- scripts -->
<script src="scripts/jquery-1.11.0.min.js"></script>
<script src="scripts/jquery-ui-1.11.2/jquery-ui.min.js"></script>
<script src="scripts/flexslider/jquery.flexslider-min.js"></script>
<script src="scripts/jquery.parallax-1.1.3.js"></script>
<script src="scripts/jquery.inview.min.js"></script>
<script src="scripts/form.js"></script>
<script src="scripts/theme.js"></script>
<script>
$('#buy-button').click(function(){
// Track buy-button clicks
fbq('track', 'InitiateCheckout');
});
</script>
<!-- scripts ends! -->
</body>
</html>