This repository was archived by the owner on Sep 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfifthrows.html
1776 lines (1509 loc) · 94.8 KB
/
fifthrows.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
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<script src="https://www.googleoptimize.com/optimize.js?id=OPT-5RB8QJC"></script>
<meta charset="utf-8">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-71SSB3KHXD"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-71SSB3KHXD', { 'optimize_id': 'OPT-5RB8QJC'});
</script>
<!--SITE TITLE-->
<title>DiscoverSUTD 2021</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Starting your SUTD life">
<meta name="keywords" content="DiscoverSUTD2021">
<!-- include bootstrap-->
<!-- Latest compiled and minified CSS -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- included css style folders here-->
<link rel="stylesheet" href="assets/css/fifth_rows.css">
<!-- iOS Splashscreens Package -->
<link href="assets/media/splashscreens/iphone5_splash.png" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
<link href="assets/media/splashscreens/iphone6_splash.png" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
<link href="/assets/media/splashscreens/iphoneplus_splash.png" media="(device-width: 621px) and (device-height: 1104px) and (-webkit-device-pixel-ratio: 3)" rel="apple-touch-startup-image">
<link href="/assets/media/splashscreens/iphonex_splash.png" media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3)" rel="apple-touch-startup-image">
<link href="/assets/media/splashscreens/iphonexr_splash.png" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
<link href="/assets/media/splashscreens/iphonexsmax_splash.png" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3)" rel="apple-touch-startup-image">
<link href="/assets/media/splashscreens/ipad_splash.png" media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
<link href="/assets/media/splashscreens/ipadpro1_splash.png" media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
<link href="/assets/media/splashscreens/ipadpro3_splash.png" media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
<link href="/assets/media/splashscreens/ipadpro2_splash.png" media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
<link rel="stylesheet" type="text/css" href="/assets/css/landing.css">
<link rel="stylesheet" type="text/css" href="/assets/css/tooltip.css">
<noscript><link rel="stylesheet" type="text/css" href="/assets/css/landing-noscript.css"></noscript>
<!-- Favicon Package -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/media/favicons/apple-touch-icon.png">
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="assets/media/favicons/apple-touch-icon-precomposed.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/media/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="194x194" href="assets/media/favicons/favicon-194x194.png">
<link rel="icon" type="image/png" sizes="192x192" href="assets/media/favicons/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/media/favicons/favicon-16x16.png">
<link rel="manifest" href="assets/media/favicons/site.webmanifest">
<link rel="mask-icon" href="assets/media/favicons/safari-pinned-tab.svg" color="#cc0000">
<link rel="shortcut icon" href="assets/media/favicons/favicon.ico">
<meta name="apple-mobile-web-app-title" content="DiscoverSUTD">
<meta name="application-name" content="DiscoverSUTD">
<meta name="msapplication-TileColor" content="#cc0000">
<meta name="msapplication-TileImage" content="assets/media/favicons/mstile-144x144.png">
<meta name="msapplication-config" content="assets/media/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<!-- NAVBAR -->
<div id="topnav">
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
<a class="navbar-brand" href="index.html">
<img src="assets/favicon.ico" alt="Logo" style="width:50px;">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown active">
<a class="nav-link dropdown-toggle" href="fifthrows.html" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
FIFTH ROWS
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#makers">Makers</a>
<a class="dropdown-item" href="#sports">Sports</a>
<a class="dropdown-item" href="#Arts">Arts</a>
<a class="dropdown-item" href="#Community">Community</a>
<a class="dropdown-item" href="#Culture">Culture</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="Human_Library.html">HUMAN LIBRARY<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="Supper.html">SUPPER</a>
</li>
<li class="nav-item">
<a class="nav-link" href="lab_sessions.html">LAB SESSIONS</a>
</li>
</ul>
</div>
</nav>
</div>
<!-- Start of section-->
<header class="masthead">
<div class="container d-flex h-100 align-items-center">
<div class="mx-auto text-center">
<h1 class="mx-auto my-0 text-uppercase">FIFTH ROWS</h1>
<h2 class="text-white-50 mx-auto mt-2 mb-5">A Part of SUTD Student Life </br><i>The following list is non exhaustive</i></h2>
<a class="btn btn-primary js-scroll-trigger" href="#registration">REGISTER</a>
</div>
</div>
</header>
<br/>
<br/>
<section id="ig">
<h2>Interest Groups</h2>
<br/>
<div id="ig_Community">
<h3>Community</h3>
<br/>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-lg-4 row-cols-xl-3">
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Changi Coffee Corner</h5>
<br/>
<p class="card-text">
<div class="align_para"><b>Description:</b> Through building a vibrant coffee brewing culture in SUTD, Changi Coffee Corner hopes to connect people over coffee and build the community. With our goal of having a student-run espresso coffee cart, we are limited to conduct internal workshops and coffee appreciation sessions for our members. Do join us if you have a passion for coffee and would like to be a part of our community.
</div>
<br/>
<b>Meeting Timings:</b> TBC
<br/>
<br/>
<b>Contact:</b> <a href="https://t.me/Jolow">Joseph Low</a><br/>
<b>Visit their:</b><br/>
<a href="https://t.me/joinchat/Uxk-Q-j-MC71VPSd">Telegram</a>
</p>
</div>
</div>
</div>
<br/>
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">SUTD Astro</h5>
<br/>
<p class="card-text">
<div class="align_para"><b>Description:</b> SUTD Astro looks to the stars and drops too much money in a fit of aperture fever. We learn about the stars and planets and other oddities in space and then try to spot them in light polluted Singapore. But no worries, we guarantee you will be amazed when you see through the lens of a telescope and witness the sea of stars for yourself.
</div>
<br/>
<b>Meeting Timings:</b> Once a month stargazing session in school at 9pm-10pm + events
<br/>
<br/>
<b>Contact:</b> Sarah Loo
<b>Visit their:</b><br/>
<a href="http://twitch.tv/sutdastro">Twitch</a>
<a href="https://www.instagram.com/sutd_astro/">Instagram</a>
</p>
</div>
</div>
</div>
</div>
</div>
<div id="ig_Maker">
<h3>Maker</h3>
<br/>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-lg-4 row-cols-xl-3">
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Students for the Exploration and Development of Space (SEDS-SUTD)</h5>
<br/>
<p class="card-text">
<div class="align_para"><b>Description:</b> Advancing space technology and development through student-led, multi-disciplinary research, engineering and design projects.
We do chemical rockets, educational livestreams, and are looking to expand and do more projects.
</div>
<br/>
<b>Meeting Timings:</b> Wednesday Afternoons
<br/>
<br/>
<b>Contact:</b> <a href="mailto: [email protected]">Joshua Ng</a>
<b>Visit their:</b><br/>
<a href="https://sedssutd.wixsite.com/info">Website</a>
<a href="https://t.me/jhklsie">Telegram</a>
<a href="https://www.instagram.com/seds_sutd/">Instagram</a>
<a href="https://www.twitch.tv/seds_sutd">Twitch</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">AISG-SUTD</h5>
<br/>
<p class="card-text">
<div class="align_para"><b>Description:</b> We are AISG-SUTD. Our activities are manifold, including but not limited to technical workshops, bonding sessions, industry talks and visits, project initiations, research activities etc. Our club events are sure to be creative, interesting and well-thought out. The various activities of our club will integrate design and technology, and will serve to improve and uphold the vision and maker culture in SUTD. Projects and workshop activities will promote interaction between students of different pillars, batches, and various staff and faculty members, thereby bringing a close knit AI community in our school to allow interdisciplinary projects which integrate the use of artificial intelligence to take place.
</div>
<br/>
<b>Meeting Timings:</b> Event-by-event basis
<br/>
<br/>
<b>Contact:</b> <a href="mailto: [email protected]">Anirudh Shrinivason</a>
<b>Visit their:</b><br/>
<a href="https://discord.gg/JF9XVv9F">Discord</a>
<a href="https://t.me/joinchat/zhmpV91-7AsyMzQ9">Telegram</a>
<a href="https://www.instagram.com/aisg.sutd/">Instagram</a>
<a href="https://www.linkedin.com/company/aisgsutd/">Linkedin</a>
</p>
</div>
</div>
</div>
</div>
</div>
<div id="ig_Sports">
<h3>Sports</h3>
<br/>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-lg-4 row-cols-xl-3">
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">SUTD CyclingGeng</h5>
<br/>
<p class="card-text">
<div class="align_para"><b>Description:</b> SUTD CyclingGeng is home to some of the loosest, fastest, most fun-loving fellas around that just plain love cycling. From clocking 100K round-islands in crocs, blasting through janky mountain-biking trails, to chasing those Strava KOMs/PRs through TMCR, we may go flat out some days (because we have no pacing strategy... yet) but we sure have a good time all days. Grab your bike, grow with our family, ride your best life. Regardless if you are a dyed-in-the-wool aero machine, hyper-technical mountain biker, PCN warrior or somewhere in-between, as long as you love cycling, CyclingGeng may just be your ride.
</div>
<br/>
<b>Meeting Timings:</b> Mondays, Wednesdays and Fridays 6.30pm-8.30pm
<br/>
<br/>
<b>Contact:</b> <a href="mailto: [email protected]">Joshua Ng</a>
<b>Visit their:</b><br/>
<a href="https://sutdcyclinggeng.carrd.co/">Website</a>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section id="frs">
<h2>Fifth Rows</h2>
<br/>
<div id="makers">
<h3>Makers</h3>
<br/>
<p>Meet our very own fifth rows that form part of our maker culture from software to hardware related! Get your hands on by joining their Fifth Rows!</p>
<br/>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-lg-4 row-cols-xl-3">
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Energy Club</h5>
<br/>
<p class="card-text">
<div class="align_para"><b>Description:</b> Our club aims towards clean and sustainable energy by educating our members and fellow peers on ways to incorporate them into their work through
thinking, prototyping and fabricating sustainable solutions for modern day problems. Our work vary from long term projects to conducting
TinkerDay Workshops for the student population.
</div>
<br/>
<b>Meeting Timings:</b> Event-by-event basis
<br/>
<br/>
<b>Contact:</b> <a href="mailto:[email protected]">Phua Yen Ching</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://t.me/joinchat/H3dY-xeG78ZME3ZzLiWwyg">Telegram</a>
<a href="mailto:[email protected]">Email</a>
<a href="https://www.instagram.com/sutd_energyclub/">Instagram</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">MakerSpace</h5>
<br/>
<p class="card-text">
<div class="align_para"><b>Description:</b>Makerspace is a friendly club that gathers like-minded friends into an environment that helps to facilitate creativity and hands on activities. Learning and passing on the knowledge about making things with our own two hands. We want to help everyone who joins Makerspace to experience the satisfaction to have an idea and materialize it with your own two hands.
</div>
<br/>
<b>Meeting Timings:</b> Wednesday 3.30pm to 5pm
<br/>
<br/>
<b>Contact:</b> <a href="mailto:[email protected]">Bryan Low Wei Sheng</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://makerspace.opensutd.org">Website</a>
<a href="https://t.me/joinchat/T7TPwJiGvQgzZTU1">Telegram</a>
<a href="https://www.instagram.com/sutdmakers">Instagram</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">SUTDio</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> SUTDio is a place in which creatives and designers can come together to experience culture in a studio and to learn more about architecture. We are open to anyone who shows interest in the arts, not just architecture!
</div>
<br/>
<b>Meeting Timings:</b> Thursday 8pm - 10pm
<br/>
<br/>
<b>Contact:</b> <a href="mailto: [email protected]">Jonathan Leong</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://sutdio.opensutd.org/">Website</a>
<a href="https://t.me/joinchat/T7TPwJiGvQgzZTU1">Telegram</a>
<a href="https://www.instagram.com/sutd.io">Instagram</a>
<a href="https://www.facebook.com/sutdioasd/">Facebook</a>
<a href="https://www.youtube.com/channel/UCm7rw25uKQCW2aG2FPvgZtA">Youtube</a>
<a href="https://youtu.be/gfX3smUqH4g">Club Video</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">IEEE-SUTD Student Chapter</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> Established in 2014, IEEE-SUTD Student Branch is the newest Student Branch under the IEEE Singapore Section. We conduct regular internal and external workshops including PCB design, Arduino and Kivy workshops. Through LITE and self-initiated Projects, we offer our members the opportunity to learn additional knowledge outside the curriculum with financial sponsorship. We also provide our members with access to our internal inventory through our loaning system.
</div>
<br/>
<b>Meeting Timings:</b> Subject to Feedback
<br/>
<br/>
<b>Contact:</b> <a href="mailto:[email protected]">Kaveri</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://ieee.opensutd.org/">Website</a>
<a href="https://www.youtube.com/watch?v=7DfWtkDgvSc">Club Video</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Multi Rotor SUTD (MRS)</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> We specialize in drones, especially quadcopters. If you would like to design, build and fly drones, or RC planes/boats/cars, you've come to the right place!
</div>
<br/>
<b>Meeting Timings:</b> Ad Hoc
<br/>
<br/>
<b>Contact:</b> <a href="mailto:[email protected]">Sean Yeo</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://www.instagram.com/sutdrones">Instagram</a>
<a href="https://youtu.be/w4Z5deG4dAc">Club Video</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">IES-SUTD Student Chapter
</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> IES (Institution of Engineers, Singapore) aims to be the heart and voice of engineers and to be the national body and home for engineers in Singapore. IES represents the engineers nationally and internationally. In the IES club, we wish to inculcate a sense of curiosity for the unknown in the field of engineering. We provide an interconnected network which allows many such curious individuals to interact and present their ideas. We also organise numerous events to educate and inspire students to pursue a career path in STEM industries.
</div>
<br/>
<b>Meeting Timings:</b> TBD (tentative)
<br/>
<br/>
<b>Contact:</b> <a href="mailto:[email protected]">Vishaal</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://youtu.be/om9ovJgYOys">Club Video</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">SUTD Organization of Autonomous Robotics</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> SOAR focuses on autonomous robotics platforms, as well as AI and machine learning frameworks. We aim to nurture a committed robotics community through impactful projects and member development. While we are a very niche club, we welcome people of any background to come and join us on this journey. We believe that robotics should be accessible to everyone and host regular workshops to impart skills and knowledge. In addition, we take on a variety of robotics projects to build our members' skills and club capabilities.
</div>
<br/>
<b>Meeting Timings:</b> <br/>
Monday 7:30 - 9:30 (Hardware) <br/>
Thursday 7:30 - 9:30 (Software)<br/>
Project Timings: Decided by individual project teams
<br/>
<br/>
<b>Contact:</b> <a href="https://t.me/abramtan">Abram Tan</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://soar.opensutd.org">Website</a>
<a href="https://www.instagram.com/sutdsoar/">Instagram</a>
<a href="https://t.me/joinchat/zc3ZMdGWkhQyYzFl">Telegram</a>
<a href="mailto:[email protected]">Email</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<iframe width="600" height="400" src="https://www.youtube.com/embed/uJL51jBuT1U" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="card-img-top"></iframe>
<div class="card-body">
<h5 class="card-title">Electric Vehicle Club (EV)</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> EV club is a team of passionate individuals who dream, design, and build electric vehicles. We embark on automotive engineering projects at all levels, from reinforcing fundamentals by tweaking go-karts, to pushing boundaries, designing and 3d printing a full-sized electric vehicle. Together with our experienced club mentors and like-minded seniors, we build not only our knowledge but hands-on skills, seeking to continuously push boundaries as engineering students.
</div>
<br/>
<b>Meeting Timings:</b> <br/>
Project-Based (Wednesdays and Fridays) at EV shed, EV store or IDer lab
<br/>
<br/>
<b>Contact:</b> <a href="https://t.me/expjk">Joshua Kwan</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://www.instagram.com/sutd_ev/">Instagram</a>
<a href="https://t.me/joinchat/MsaADiPWKstjZjY1">Telegram</a>
<a href="mailto: [email protected]">Email</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Mechanical Designer Club (MechD)</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> In MechD, we focus on computing-aided design (CAD) with software like Solidworks and Fusion360. We teach how to design models and products that you can 3D print. Additionally, we provide both beginner and advanced workshops for everyone as well as certification for those who want to become professionals. Our aim is to build a strong and rich culture of 3D modelling to enrich the community’s understanding and ability. If you’re interested in CADing, come join us!
</div>
<br/>
<b>Meeting Timings:</b> Event Based
<br/>
<br/>
<b>Contact:</b> <a href="https://t.me/bdo96">Brendan Ong</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://mechd.opensutd.org/">Website</a>
<a href="https://m.facebook.com/MechDSUTD">Facebook</a>
<a href="https://t.me/joinchat/HIkK0t_7Y-VgSNz1">Telegram</a>
<a href="mailto:[email protected]">Email</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Digital Design & Development Club (3DC)</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> Digital Design & Development Club (3DC) is an official Fifth-Row club affiliated with ISTD Pillar at SUTD. We are also a Developer Student Club (DSC) supported by Google and a member of the OpenNodes Campus Collective. Developer Student Clubs are university-based community groups for students interested in Google developer technologies. Students from all undergraduate or graduate programs with an interest in growing as a developer are welcome. By joining a DSC, students grow their knowledge in a peer-to-peer learning environment and build solutions for local businesses and their communities.
</div>
<br/>
<b>Meeting Timings:</b> Event Based
<br/>
<br/>
<b>Contact:</b> <a href="https://t.me/rphly">Raphael Yee</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://3dc.opensutd.org/">Website</a>
<a href="https://www.youtube.com/channel/UCF56lQD1HWv-0uOQSXrTmLw">Youtube</a>
<a href="https://t.me/joinchat/C_Nni1C77ZlOVTdjU4yf4Q">Telegram</a>
<a href="https://www.twitch.tv/3dcdsc">Twitch</a>
<a href="https://www.instagram.com/sutd3dc/">Instagram</a>
<a href="https://github.com/3DCdsc">GitHub</a>
</p>
</div>
</div>
</div>
</div>
</div>
<!--Sports-->
<div id="sports">
<h3>Sports</h3>
<br/>
<p>Meet our very own fifth rows that consists of individuals who are enthusiatic about sports!</p>
<br/>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-lg-4 row-cols-xl-3">
<div class="col mb-4">
<div class="card">
<iframe width="560" height="315" src="https://www.youtube.com/embed/iolATEVek8o" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="card-img-top"></iframe>
<div class="card-body">
<h5 class="card-title">Ultimate Frisbee
</h5>
<br/>
<p class="card-text">
<div class="align_para"><b>Description:</b>
A family running and chasing after discs together. We welcome Frisbee players of all skill levels to join us; from training to just having fun together, the Ultimate Club goes far together.
</div>
<br/>
<b>Meeting Timings:</b> <br/>
Competitive team: Wednesdays 1930 - 2230<br/>
Recreational: Fridays 1600 - 1900
<br/>
<br/>
<b>Contact:</b> <a href="https://t.me/Tanjiayue">Tan Jia Yue</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://t.me/joinchat/Kdlp4-Er3pc1MDNl">Telegram</a>
<a href="https://www.instagram.com/sutdultimate/">Instagram</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<iframe width="560" height="315" src="https://www.youtube.com/embed/X2cn43aFYtQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="card-img-top"></iframe>
<div class="card-body">
<h5 class="card-title">SUTD Judo</h5>
<br/>
<p class="card-text">
<div class="align_para"><b>Description:</b>SUTD Judo club invites you to join us and learn some throws!
Judo - known as the gentle way, involves using the opponents force against themselves, using minimum effort to maximise efficiency.
What can you expect? You can learn some self defense (throws and groundwork), acrobatics (rolling and cartwheels), and above all, have fun!
</div>
<br/>
<b>Meeting Timings:</b> Monday and Thursdays 7pm-10pm
<br/>
<br/>
<b>Contact:</b> <a href="mailto:[email protected]">Valerie Lu</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://t.me/sutdjudo2021">Telegram</a>
<a href="http://instagram.com/sutdjudo">Instagram</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<iframe width="560" height="315" src="https://www.youtube.com/embed/xtopsha_OUI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="card-img-top"></iframe> <div class="card-body">
<h5 class="card-title">SUTD Football</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> We are a family of recreational and competitive players who just want to have fun while sharing our love for football. We welcome anyone who is willing to learn and be part of a team, regardless of experience. Our competitive players can also engage in competitions like Singapore University Games and Diva La Futbol
</div>
<br/>
<b>Meeting Timings:</b> Tuesday & Thursday 8pm - 10pm
<br/>
<br/>
<b>Contact:</b> <a href="https://t.me/fauzxan">Mohammed Fauzaan</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://t.me/joinchat/76R66ryT17E1YjY1">Telegram</a>
<a href="https://www.instagram.com/fcsutd">Instagram</a>
<a href=" https://vt.tiktok.com/ZSJpLS5pr/">TikTok</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<iframe width="560" height="315" src="https://www.youtube.com/embed/4e4vDY_66iY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="card-img-top"></iframe>
<div class="card-body">
<h5 class="card-title">SUTD KARATE</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> SUTD Karate hosts weekly training on campus, open to all members of SUTD. Trainings focuses on basic self-defence techniques, kumite drills and katas. The club also participate regularly in competition to ensure that members get a platform to interact with other karateka and hone their skills. Aside from the above, members also attend gradings a few times per year.
</div>
<br/>
<b>Meeting Timings:</b> Tuesday 8pm-10pm, at Dance Studio 6&7
<br/>
<br/>
<b>Contact:</b> <a href="mailto:[email protected]">Tan Yi Xuan</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://t.me/joinchat/G0nrRJXb62_yeIxF">Telegram</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">SUTD Basketball</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> We are a group of passionate students who love to have fun and play basketball. All SUTD students are welcomed to join us! Everybody here is like a family member who always embraces and empowers each other, regardless of skills and experience.
</div>
<br/>
<b>Meeting Timings:</b> Monday (Men&Women ) and Thursday (Men) 7.00-10.00pm
<br/>
<br/>
<b>Contact:</b> <a href="mailto:[email protected]">Erick Chandra</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://www.instagram.com/sutdbasketball">Instagram</a>
<a href="mailto:[email protected]">Email</a>
<a href="https://t.me/joinchat/bYHW1f_L_kAwYTFl">Telegram</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<iframe width="560" height="315" src="https://www.youtube.com/embed/ThoqGMMYzs4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<div class="card-body">
<h5 class="card-title">SUTD Athletics
</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> Platform to provide an opportunity for members to congregate and train together, maintaining and improving their cardiovascular fitness, endurance and speed for the purpose of representing the school
in various national-level competitions.
</div>
<br/>
<b>Meeting Timings:</b> Mondays and Wednesdays 6.30pm-8.30pm
<br/>
<br/>
<b>Contact:</b> <a href="mailto:[email protected]">Jeff Lai</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://t.me/sutdathletics2020">Telegram</a>
<a href="https://www.instagram.com/sutd.athletics/">Instagram</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<iframe width="560" height="315" src="https://www.youtube.com/embed/FVF1SHj__8c" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="card-img-top"></iframe>
<div class="card-body">
<h5 class="card-title">SUTD Volleyball</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> SUTD Volleyball is a welcoming and friendly bunch of people who enjoy playing and improving at the sport of Volleyball! We welcome players of any skill levels, whether you're a fan of Haikyuu! or Ran Takahashi wanting to experience Volleyball yourself or an experienced player from past CCAs, we welcome you to join us! We have an experienced and super helpful coach who will teach you the basics of Volleyball such as digging and spiking the ball, and when you're ready, the more advanced stuff like strategies.
</div>
<br/>
<b>Meeting Timings:</b> <br/>
Tuesday and Friday evenings: 7pm to 11pm
<br/>
<br/>
<b>Contact:</b> <a href="https://t.me/mandisloh">Mandis Loh</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://www.instagram.com/vballsutd/">Instagram</a>
<a href="mailto:[email protected]">Email</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">SUTD Tennis</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> Tennis Club
For competitive / casual players, or people interested in learning the sport.
</div>
<br/>
<b>Meeting Timings:</b> <br/>
Days: Every Monday and/or Thursday <br/>
Time: 7.30 - 10pm <br/>
Venue: Tennis court, located on rooftop of ISH
<br/>
<br/>
<b>Contact:</b> <a href="mailto: [email protected]">Shaun Neo</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://t.me/joinchat/vri11BtLzN1jYjU1">Telegram</a>
<a href="mailto:[email protected]">Email</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<iframe width="560" height="315" src="https://www.youtube.com/embed/06TzNL5CP6A" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="card-img-top"></iframe>
<div class="card-body">
<h5 class="card-title">SUTD Mountaineering</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> Let's go where the mountains are!
Here at SUTD Mountaineering, our primary and longstanding aim is to cultivate the love for the outdoors and an appreciation for nature through affordable and accessible hiking opportunities, as well as more technical mountaineering expeditions for the ardent mountaineer. Serious work aside, we also focus on imparting essential mountaineering skills and knowledge that you can easily apply in your life. Join us as we strive for greater heights!
</div>
<br/>
<b>Meeting Timings:</b> Every Tuesdays: 8:00pm - 9.30pm
[Ad-hoc] Thursdays: 8:00pm - 9:30pm (Only applicable for expedition build-up trainings)
<br/>
<br/>
<b>Contact:</b> <a href="https://t.me/mingliang17">mingliang17</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://mechd.opensutd.org/">Website</a>
<a href="https://m.facebook.com/MechDSUTD">Facebook</a>
<a href="https://t.me/joinchat/HIkK0t_7Y-VgSNz1">Telegram</a>
<a href="mailto:[email protected]">Email</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<iframe width="560" height="315" src="https://www.youtube.com/embed/yz5xHzGCEt0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="card-img-top"></iframe>
<div class="card-body">
<h5 class="card-title">SUTD Archery</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> SUTD Archery aims to allow all students to try out, or even pick up, archery as a sport here in SUTD! We provide an outlet for students to relax and shoot after a hectic day at school.
We welcome anyone regardless of prior experience, however we typically only take in new regular members at the beginning of every term. This is to ensure that we are able to help all members progress further, together, each session. So look out for your introductory sessions!
</div>
<br/>
<b>Meeting Timings:</b> [Recreational] Wednesday 7-10pm (feel free to leave earlier)
[Coached] Tuesday 8-11pm and/or Friday 3-6pm
<br/>
<br/>
<b>Contact:</b> <a href="https://t.me/sorahawk">Tan Le Xuan</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://t.me/joinchat/HpEyZo15F54yODI1">Telegram</a>
<a href="https://www.instagram.com/sutd_archery/">Instagram</a>
<a href="mailto: [email protected]">Email</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<iframe width="560" height="315" src="https://www.youtube.com/embed/6bhGOlf5gDw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="card-img-top"></iframe>
<div class="card-body">
<h5 class="card-title">SUTD Squash</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b> We are a close-knit bunch of enthusiastic Squash players. We train and learn together, united by our passion and love for the game. Whether you want to train competitively, want to pick up a new sport, or just want to have fun, our club warmly welcomes all who are interested in Squash!
</div>
<br/>
<b>Meeting Timings:</b> Dates: Every weekday<br/>
Time: 7-10PM<br/>
Venue: Squash Courts 1 & 2
<br/>
<br/>
<b>Contact:</b> <a href="mailto: [email protected]">Justin Eng</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://t.me/joinchat/6r8ZXHu0Asw5ZjQ">Telegram</a>
<a href="https://www.instagram.com/sutd_squash/">Instagram</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<iframe width="560" height="315" src="https://www.youtube.com/embed/-uMEnblu878" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="card-img-top"></iframe>
<div class="card-body">
<h5 class="card-title">SUTD Floorball</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b>SUTD Floorball is a tight-knitted family built upon the joy of playing this fast-paced and exhilarating sport. We gather twice a week to escape from our hectic lifestyles, by engaging in a fun game of Floorball. Not only do we work hard on the court, we also strengthen our bonds via post-training suppers such that friendships are forged both on and off the court.
</div>
<br/>
<b>Meeting Timings:</b> Wednesdays and Fridays 7.00pm-11.00pm
<br/>
<br/>
<b>Contact:</b> <a href="https://t.me/vernontoh">Vernon Toh</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://www.instagram.com/sutdfloorball">Instagram</a>
<a href="https://t.me/joinchat/NGDsZTH_zT5jOTBl">Telegram</a>
<a href="mailto:[email protected]">Email</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">SUTKD (Taekwondo)</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b>At SUTKD, we never skip leg day. We welcome everyone who wants to learn new skills and kick real human targets.
Anyone can join, whether you're a complete beginner or have a black belt (even if you got it as little kid). Taekwondo is the best martial art to begin with, since it focuses on all areas of physical fitness. Aim to become a black belt master before your graduation with powerful kicks that can deter anyone!
</div>
<br/>
<b>Meeting Timings:</b> Venue: Dance Studio 7
Timings: Wednesdays and Fridays 5pm-7pm
<br/>
<br/>
<b>Contact:</b> <a href="https://t.me/vernontoh">Vernon Toh</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://www.instagram.com/sutdfloorball">Instagram</a>
<a href="https://t.me/joinchat/NGDsZTH_zT5jOTBl">Telegram</a>
<a href="mailto:[email protected]">Email</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<iframe width="560" height="315" src="https://www.youtube.com/embed/ak3FOHoGSm0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="card-img-top"></iframe>
<div class="card-body">
<h5 class="card-title">SUTD Boxing</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b>Learn self defense? Keep fit? Become a fighter and represent SUTD?
We got you covered.
We do various physical activities to train our boxing techniques, cardio, endurance, strength, conditioning and sparring.
NO PRIOR EXPERIENCE NEEDED
</div>
<br/>
<b>Meeting Timings:</b> Wednesday and Fridays 7.00pm-9.00pm
<br/>
<br/>
<b>Contact:</b> <a href="https://t.me/oakkarrr">Oakar Min</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://www.instagram.com/sutd.boxing">Instagram</a>
<a href="mailto: [email protected]">Email</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<iframe width="560" height="315" src="https://www.youtube.com/embed/TdK3uFm76BA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="card-img-top"></iframe>
<div class="card-body">
<h5 class="card-title">APEX Outdoor Adventure Club</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b>We are the club for all outdoor thrill seekers searching for fun and adventures!
Hikes, Kayaking, Night Cycling, Adventure races, you name it, we'll have it!
Be it weekly trainings or events, we welcome you to the APEX family with open arms!
</div>
<br/>
<b>Meeting Timings:</b> Wednesdays and Fridays 5.00pm-6.30pm
<br/>
<br/>
<b>Contact:</b> <a href="https://t.me/MingYuanChua">Chua Ming Yuan</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://www.instagram.com/sutdapex/">Instagram</a>
<a href="https://t.me/joinchat/AVhs2k4KVFUInyiZFp7Kpw">Email</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<iframe width="560" height="315" src="https://www.youtube.com/embed/78YRP8FqOPk" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="card-img-top"></iframe>
<div class="card-body">
<h5 class="card-title">Cuesport Club</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b>A fifth row to pick up pool. Ranging from newcomers who want to learn pool as an interest and social skill, to veterans who want to practice to achieve competitive excellence. All inclusive and all welcoming.
</div>
<br/>
<b>Meeting Timings:</b> Play times are every weekday 3pm-10pm
Competitive training is Monday 7pm-10pm
<br/>
<br/>
<b>Contact:</b> <a href="https://t.me/Sharan2325">Sharan</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://www.instagram.com/sutd.cuesports/">Instagram</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<iframe width="560" height="315" src="https://www.youtube.com/embed/gvkdOfGIYAI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="card-img-top"></iframe>
<div class="card-body">
<h5 class="card-title">SUTD Tchoukball</h5>
<br/>
<p class="card-text">
<div class="align_para">
<b>Description:</b>Close-knit group of people who learn, play and train for tchoukball together
</div>
<br/>
<b>Meeting Timings:</b> Tuesdays and Thursdays 8pm-11pm ISH2
<br/>
<br/>
<b>Contact:</b> <a href="mailto: [email protected]">Lim Ken Zho</a><br/><br/>
<b>Visit their:</b><br/>
<a href="https://t.me/joinchat/gyaXaGGilt1iZjVl">Telegram</a>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">SUTD Climbers</h5>
<br/>
<p class="card-text">
<div class="align_para">