-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1245 lines (1155 loc) · 68.9 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
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 lang="en">
<head>
<title>RUR? | Home</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/ionicons.min.css">
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
<link rel="stylesheet" href="css/jquery.timepicker.css">
<link rel="stylesheet" href="css/flaticon.css">
<link rel="stylesheet" href="css/icomoon.css">
<link rel="stylesheet" href="css/style_1.0.css">
<link rel='icon' href='images/RUR20_small.png' type='image/x-icon'>
<meta name="description"
content="Official website of 'Are You Ready? 2024', organized by the Rotaract Club of University of Moratuwa">
<meta name="keywords" content="RUR24,Are You Ready,Rota,Mora,UoM,RUR,RUR?">
<meta property="og:title" content="Are You Ready? 2024" />
<meta property="og:description"
content="'Are You Ready? 2024', organized by Rotaract Club of the University of Moratuwa in collaboration with the university's Career Guidance Unit is a much-awaited event in the university calendar which marks the official careers week of the university." />
<meta property="og:image" content="http://www.areyouready.uom.lk/images/og.png" />
<meta property="og:url" content="http://www.areyouready.uom.lk/" />
<meta name="referrer" content="no-referrer" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-D45CM7W0LW"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-D45CM7W0LW');
</script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light" id="ftco-navbar">
<div class="container">
<div class="row">
<a href="/">
<ul>
<li>
<div class="logo-container ml-2 ml-md-0"><img src="images/RUR20_small.png" alt="logo"
style="height: 2.1rem;" class="ml-0"></div>
</li>
<li>
<h5>Are You Ready? 2024</h5>
</li>
</ul>
</a>
<!-- <a style="height: 2.1rem; padding-bottom: 0; padding-top: 0; margin-left: 5px" class="navbar-brand" href="index.html"> RUR? | <span>2020</span></a> -->
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#ftco-nav"
aria-controls="ftco-nav" aria-expanded="false" aria-label="Toggle navigation">
<span class="oi oi-menu"></span> Menu
</button>
<div class="collapse navbar-collapse" id="ftco-nav">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a href="#" class="nav-link">Home</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#sessions" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Sessions
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#headsup">Heads Up</a>
<a class="dropdown-item" href="#theforum">The Forum</a>
<a class="dropdown-item" href="#theimage">The Image</a>
<a class="dropdown-item" href="#resumecentre">Resume Centre</a>
<a class="dropdown-item" href="#careerinsights">Career Insight series</a>
<a class="dropdown-item" href="#flagshipfair">Flagship fair</a>
</div>
</li>
<li class="nav-item"><a href="#partners" class="nav-link">Partners</a></li>
<li class="nav-item"><a href="#companies" class="nav-link">Companies</a></li>
<li class="nav-item"><a href="#reachus" target="_blank" class="nav-link">Reach us</a></li>
</li>
</ul>
</div>
</div>
</nav>
<!-- END nav -->
<div class="hero-wrap js-fullheight" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row no-gutters slider-text js-fullheight align-items-center justify-content-start"
data-scrollax-parent="true">
<div class="col-md-6 ftco-animate text-center order-2 order-md-1"
data-scrollax=" properties: { translateY: '70%' }">
<h1 class="mb-4 gradient-blue" data-scrollax="properties: { translateY: '30%', opacity: 1.6 }">
ARE YOU<br>
<span>READY?</span><br>
<span style="font-weight:300;font-size:100px;">2024</span>
</h1>
<p class="mb-1" style="color:#1e22a4;"
data-scrollax="properties: { translateY: '30%', opacity: 1.6 }">
<i>The Virtual Odyssey in Corporate Arena<br></i>
</p>
<p>
<ul class="list-inline" data-scrollax="properties: { translateY: '30%', opacity: 1.6 }">
<li>
<button class="mt-2 btn btn-primary mx-2">
<a href="" data-target="#readMoreModal" data-toggle="modal" style="color: white">Read
more</a>
</button>
</li>
<!-- <li>
<button class="mt-2 btn btn-primary mx-2"
style="background:#0144b1 !important;border-color:#0144b1 !important;">
<a href="https://rotaract.social/reg" target="_blank" style="color:white;">Sign in
now</a>
</button>
</li> -->
</ul>
</p>
</div>
<div class="col-md-6 ftco-animate order-1 order-md-2"
data-scrollax=" properties: { translateY: '70%' }">
<img src="images/RUR20.png" alt="RUR20" class="img-fluid">
</div>
</div>
</div>
</div>
<section class="ftco-counter img" id="sessions">
<div class="container">
<div class="row d-flex pt-1 pt-md-4">
<div class="col text-center pl-md-5 py-5">
<h1 class="gradient-blue" style="font-weight:700;">SESSIONS</h1>
</div>
</div>
<!-- Heads Up-->
<div class="row pt-5 align-items-center" id="headsup">
<div class="col-md-4">
<img class="img-fluid" src="images\2024\heads up.png" alt="Heads Up" />
</div>
<div class="col-md-4">
<p>The curriculum vitae and job interviews play significant roles in a job recruitment process.
Presenting a CV that showcases one's life work accurately is the key to open doors for a
face-to-face interview.</p>
<a href="" data-toggle="modal" data-target="#headsUpModal"
class="float-left float-md-right mb-3 mb-md-0">Read more..</a>
</div>
<div class="col-md-4">
<div class="row align-items-center">
<div class="col text-center">
<a href="https://www.facebook.com/share/v/CUEWLxLvZwvC7GUV/?mibextid=jmPrMh" target="_blank">
<div class="btn-session-reg" style="background:#e3c800;cursor: pointer;">
<ion-icon name="logo-facebook" class="ion-logo-facebook"
style="font-size:20px;"></ion-icon> Watch on Facebook
</div>
</a>
</div>
</div>
<div class="row">
<div class="col">
<!-- <div class="clock" data-countdown="01/17/2023 00:00:00"></div> -->
</div>
</div>
</div>
</div>
<!-- The Forum-->
<!-- <div class="row pt-5 align-items-center" id="theforum">
<div class="col-md-4">
<img class="img-fluid" src="images/TheForum1.png" alt="The Forum" />
</div>
<div class="col-md-4">
<p>Adjusting into the working world out of university is exciting, yet somewhat challenging. University of Moratuwa owns many entrepreneurial thinkers who can change the job world extensively in the future.</p>
<a href="" data-toggle="modal" data-target="#theForumModal" class="float-left float-md-right mb-3 mb-md-0">Read more..</a>
</div>
<div class="col-md-4">
<div class="row align-items-center">
<div class="col text-center">
<a href="https://fb.me/e/1u8wPu7FV" target="_blank">
<div class="btn-session-reg" style="background:#8724a7;">
<ion-icon name="logo-facebook" class="ion-logo-facebook" style="font-size:20px;"></ion-icon> Watch On Facebook</div>
</a>
</div>
</div>
<div class="row">
<div class="col">
<div class="clock" data-countdown="01/24/2023 18:00:00"></div>
</div>
</div>
</div>
</div> -->
<!-- The Image-->
<div class="row pt-5 align-items-center" id="theimage">
<div class="col-md-4">
<img class="img-fluid" src="images\2024\image_1.png" alt="The Image" />
</div>
<div class="col-md-4">
<p>Personal branding is telling an individual's story in a means that reflects his conduct,
behavior, attitudes,and unspoken words. A unique personal brand is what would make a
professional stand out from the rest and risealong his career
ladder.
</p>
<a href="" data-toggle="modal" data-target="#theImageModal"
class="float-left float-md-right mb-3 mb-md-0">Read more..</a>
</div>
<div class="col-md-4">
<div class="row align-items-center">
<div class="col text-center">
<a href="" data-toggle="modal" data-target="#theImageModal">
<div class="btn-session-reg" style="background:#ba1b20;">
Successfully Concluded
</div>
</a>
</div>
</div>
<!-- <div class="row">
<div class="col">
<div class="clock" data-countdown="01/24/2023 18:00:00"></div>
</div>
</div> -->
</div>
</div>
<!-- Resume Center-->
<div class="row pt-5 align-items-center" id="resumecentre">
<div class="col-md-4">
<img class="img-fluid" src="images\2024\resume centre.png" alt="Resume Center" />
</div>
<div class="col-md-4">
<p>The curriculum vitae or the CV is the primary opportunity for a job applicant to establish a
strong initial impression on a potential employer. A quality CV will surely boost the likelihood
of an employment seeker getting a face-to-face
interview.
</p>
<a href="" data-toggle="modal" data-target="#resumeCenterModal"
class="float-left float-md-right mb-3 mb-md-0">Read more..</a>
</div>
<div class="col-md-4">
<div class="row align-items-center">
<div class="col text-center">
<a href="" data-toggle="modal" data-target="#resumeCenterModal">
<div class="btn-session-reg" style="background:#13b703;">Stay tuned</div>
</a>
</div>
</div>
<div class="row">
<div class="col">
<div class="clock" data-countdown="02/13/2024 09:00:00"></div>
</div>
</div>
</div>
</div>
<!-- Career Insights-->
<div class="row pt-5 align-items-center" id="careerinsights">
<div class="col-md-4">
<img class="img-fluid" src="images\2024\career insights.png" alt="Career Insights" />
</div>
<div class="col-md-4">
<p>Most of the undergraduates manifest a lack of knowledge regarding the career paths they could
pursue following their graduation. Hence, a series of webinars will be conducted based on the
different career fields catered to different
departments of the university by the industry and corporate companies who will be participating
the careerfair.</p>
<a href="" data-toggle="modal" data-target="#careerInsightsModal"
class="float-left float-md-right mb-3 mb-md-0">Read more..</a>
</div>
<div class="col-md-4">
<div class="row align-items-center">
<div class="col text-center">
<a href="" data-toggle="modal" data-target="#regModal">
<div class="btn-session-reg" style="background:#ae0461;">
<!--<ion-icon name="logo-facebook" class="ion-logo-facebook" style="font-size:20px;"></ion-icon>--> Stay
tuned
</div>
</a>
</div>
</div>
<div class="row">
<div class="col">
<div class="clock" data-countdown="02/19/2024 06:00:00"></div>
</div>
</div>
</div>
</div>
<!-- Flagship day-->
<div class="row mb-0 mb-md-5 pt-5 align-items-center" id="flagshipfair">
<div class="col-md-4">
<img class="img-fluid" src="images\2024\flagship.png" alt="Flagship Fair" />
</div>
<div class="col-md-4">
<p>'Flagship Fair' is the limelight of 'Are you Ready?', in which the prospective employers' role
comes intoplay. The employers are given the opportunity to identify skillful and qualified
undergraduates of University of Moratuwa, through
mock and real interviews.</p>
<a href="" data-toggle="modal" data-target="#flagshipDayModal"
class="float-left float-md-right mb-3 mb-md-0">Read more..</a>
</div>
<div class="col-md-4">
<div class="row align-items-center">
<div class="col text-center">
<a href="https://rotaract.social/reg" target="_blank">
<div class="btn-session-reg" style="background:#0f3aa1;">Stay Tuned</div>
</a>
</div>
</div>
<div class="row">
<div class="col">
<div class="clock" data-countdown="02/28/2024 08:00:00"></div>
</div>
</div>
</div>
</div>
<!-- Global Pathway -->
<div class="row mb-0 mb-md-5 pt-5 align-items-center" id="flagshipfair">
<div class="col-md-4">
<img class="img-fluid" src="images\2024\global.png" alt="Global Pathway" />
</div>
<div class="col-md-4">
<p>'Global Pathway' program offers a variety of resources to help students prepare for their international job search. This includes information on how to create a global resume, how to research international job opportunities, and how to effectively network with professionals in different countries. Additionally, the program provides students with access to a wide range of job search tools, including job boards and career fairs, as well as career counseling services to help students identify and pursue their ideal global career.</p>
<a href="" data-toggle="modal" data-target="#flagshipDayModal"
class="float-left float-md-right mb-3 mb-md-0">Read more..</a>
</div>
<!--<div class="col-md-4">
<div class="row align-items-center">
<div class="col text-center">
<a href="https://rotaract.social/reg" target="_blank">
<div class="btn-session-reg" style="background:;">Stay Tuned</div>
</a>
</div>
</div>
<div class="row">
<div class="col">
<div class="clock" data-countdown="03/04/2023 08:00:00"></div>
</div>
</div>
</div>
</div> -->
<div class="col-md-4">
<div class="row align-items-center">
<div class="col text-center">
<a href="https://www.facebook.com/share/v/4BaAZgdtLtQ9DzCx/?mibextid=jmPrMh" target="_blank">
<div class="btn-session-reg" style="background:#1a8f85;cursor: pointer;">
<ion-icon name="logo-facebook" class="ion-logo-facebook"
style="font-size:20px;"></ion-icon> Watch on Facebook
</div>
</a>
</div>
</div>
<div class="row">
<div class="col">
<!-- <div class="clock" data-countdown="01/17/2023 00:00:00"></div> -->
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section bg-light" id="partners" style="padding-bottom: 0;">
<div class="container">
<div class="row d-flex pt-1 pt-md-4">
<div class="col text-center pl-md-5 py-5">
<h1 class="gradient-blue" style="font-weight:700;">PARTNERS</h1>
</div>
</div>
<div class="row">
<div class="offset-md-4 col-md-4 partner text-center mb-5">
<span>STRATEGIC</span> PARTNER<br>
<img src="images/sponsor 2024/lseg.png" class="col-12 col-md-12 sm-logo" alt="Official Strategic partner"><br>
<!--<a href="" data-toggle="modal" data-target="#lsegModal" style="font-size:14px;" class="mb-4"><!--Read more..</a>--><br>
<!--<span>OFFICIAL<br class="newline" /> PLATINUM</span><br>PARTNER<br>-->
</div>
<div class="row">
<div class="offset-md-1 col-md-5 partner text-center mb-0 mb-md-5">
<span>GOLD</span> PARTNER<br>
<img src="images/sponsor 2024/Logo_of_MAS_Holdings.png" class="col-5 col-md-4 mt-5" alt="Gold partner">
</div>
<div class="offset-md-1 col-md-5 partner text-center mb-0 mb-md-5">
<span>Digital Solutions</span> PARTNER<br>
<img src="https://www.dimolanka.com/wp-content/uploads/2022/12/Dimo-logo-1.svg" class="col-2 col-md-4 mt-2 " alt="Digital Solutions partner">
</div>
<!-- <div class="offset-md-1 col-md-5 partner text-center mb-0 mb-md-5 mobile-top">
<span>GOLD</span> PARTNER<br>
<img src="images/sponsor/MAS-logo.jpg" class="col-5 col-md-4 mt-2 " alt="Gold partner">
</div>
<div class="col-md-4 partner text-center">
<span>SILVER</span> PARTNER<br>
<img src="images/sponsor/Creative Software logo new.png" class="col-5 col-md-3 mt-2" alt="Silver partner">
</div> -->
</div>
<!--</div>-->
<div class="row mobile-top " style="
margin-bottom: -50px;
">
<div class="offset-md-1 col-md-5 partner text-center mb-0 mb-md-5">
<span>webinar</span> PARTNER<br>
<img src="images/sponsor 2024/JKH Logo.png" class="col-5 col-md-4 mt-2 " alt="webinar partner" >
</div>
<div class="offset-md-1 col-md-5 partner text-center mb-0 mb-md-5">
<span>Knowledge</span> PARTNER<br>
<img src="images/sponsor 2024/the-ai-team.png" class="col-5 col-md-4 mt-2 " alt="Knowledge partner">
</div>
</div>
<!--
<div class="offset-md-3 col-md-6 partner text-center mb-0 mb-md-5"><br>
<span> IT SOLUTION</span> PARTNERS
</div>
<div class="row">
<div class="col-sm">
</div>
<div class="col-sm">
<img src="images/sponsor/SYNERGEN.png" class="col-12 col-md-12" alt="Official technology partner" style="
padding-block: 20px 100px;
">
</div>
<div class="col-sm">
<img src="images/sponsor/InEight.png" class="col-12 col-md-12" alt="Official technology partner" >
</div>
<div class="col-sm">
</div>
</div>
<div class="row mobile-top">
<div class="offset-md-1 col-md-5 partner text-center mb-0 mb-md-5">
<span>DIGITAL SOLUTION</span> PARTNER<br>
<img src="images/sponsor/Cloud.PNG" class="col-5 col-md-4 mt-2" alt="Platinum partner">
</div>
<div class="offset-md-1 col-md-5 partner text-center mb-0 mb-md-5 pulse">
<span>DIGITAL MEDIA</span> PARTNER<br>
<img src="images/sponsor/Pulse Logo.png" class="col-5 col-md-4 mt-2 " alt="Gold partner">
</div>
</div>-->
</div>
</section>
<!-- <section class="ftco-section bg-light" style="padding-top: 0;" id="companies">
<div class="container">
<div class="row d-flex pt-1 pt-md-4">
<div class="col text-center pl-md-5 py-5">
<h1 class="gradient-blue" style="font-weight:700;">COMPANIES</h1>
<p>Here‘s the list of companies which have already got on board with 'Are You Ready? 2024'</p>
</div>
</div>
<div class="row" id="company-data"></div>
</div>
</section> -->
<section class="ftco-section" id="reachus">
<div class="container">
<div class="row d-flex pt-1 pt-md-4">
<div class="col text-center pl-md-6 py-5">
<h1 class="gradient-blue" style="font-weight:700;">REACH US</h1>
</div>
</div>
<h5 class="text-center">Co-Chairpersons</h5>
<div class="row mb-5 text-center">
<div class="col -sm-3 text-center">
</div>
<div class="col -sm-3 text-center">
<!-- <img src="images/bimsara.png" class="img-fluid project-chairperson" alt="Rtr. Bimsara Perera" />-->
<!--<h5>Co-Chairperson</h5>-->
<p>
<span style="font-weight: 700;">Rtr. Charith Belpage</span><br> +94 75 426 4838<br>
<span style="font-size: 12px;">[email protected]</span>
</p>
</div>
<div class="col -sm-3 text-center">
<!--<img src="images/Ranul.png" class="img-fluid project-chairperson" alt="Rtr. Ranul Navojith" />-->
<!--<h5>Co-Chairperson</h5>-->
<p>
<span style="font-weight: 700;">Rtr. Sarindu Wijekoon</span><br> +94 71 622 6094<br>
<span style="font-size: 12px;">[email protected]</span>
</p>
</div>
<div class="col -sm-3 text-center">
</div>
<!-- <div class="col-sm-4 text-center"> -->
<!--<img src="images/ravindu.png" class="img-fluid project-chairperson" alt="Rtr. Ravindu Jayasinghe" />-->
<!--<h5>Co-Chairperson</h5>-->
<!-- <p>
<span style="font-weight: 700;">Rtr. Ravindu Jayasinghe</span><br> 071 263 7177<br>
<span style="font-size: 12px;">[email protected]</span>
</p>
</div> -->
</div>
<h5 class="text-center">Partnership Coordinators</h5>
<div class="row mb-5 text-center">
<div class="col -sm-3 text-center">
<!--<h5>Partnership Coordinator</h5>-->
<p>
<span style="font-weight: 700;">Rtr. Dulan Bandara
</span><br> +94 72 288 5130<br>
<span style="font-size: 12px;">[email protected]
</span>
</p>
</div>
<div class="col -sm-3 text-center">
<!--<h5>Partnership Coordinator</h5>-->
<p>
<span style="font-weight: 700;">Rtr. Nethra Bandara
</span><br> +94 70 597 2781<br>
<span style="font-size: 12px;">[email protected]
</span>
</p>
</div>
</div>
</div>
<h5 class="text-center">Company Coordinators</h5>
<div class="row mb-5 text-center">
<div class="col -sm-3 text-center">
<p>
<span style="font-weight: 700;">Rtr. Buvani Guruge
</span><br> +94 71 368 2315<br>
<span style="font-size: 12px;">[email protected]
</span>
</p>
</div>
<div class="col -sm-3 text-center">
<p>
<span style="font-weight: 700;">Rtr. Kavin Siriwardana
</span><br> +94 70 255 2099<br>
<span style="font-size: 12px;">[email protected]
</span>
</p>
</div>
<div class="col -sm-3 text-center">
<p>
<span style="font-weight: 700;">Rtr. Theoda Hettiarachchi
</span><br> +94 70 572 5175<br>
<span style="font-size: 12px;">[email protected]
</span>
</p>
</div>
</div>
</div>
<h5 class="text-center">Undergraduate Coordinators</h5>
<div class="row mb-5 text-center">
<div class="col -sm-3 text-center">
<p>
<span style="font-weight: 700;">Rtr. Shachintha Botheju
</span><br> +94 71 771 0666<br>
<span style="font-size: 12px;">[email protected]
</span>
</p>
</div>
<div class="col -sm-3 text-center">
<p>
<span style="font-weight: 700;">Rtr. Nawoda Thathsarani
</span><br> +94 77 180 6164<br>
<span style="font-size: 12px;">[email protected]
</span>
</p>
</div>
<div class="col -sm-3 text-center">
<p>
<span style="font-weight: 700;">Rtr. Thejan Dulara
</span><br> +94 76 972 6539<br>
<span style="font-size: 12px;">[email protected]
</span>
</p>
</div>
<div class="col -sm-3 text-center">
<p>
<span style="font-weight: 700;">Rtr. Navodi Wijesekara
</span><br>+94 77 021 1090<br>
<span style="font-size: 12px;">[email protected]
</span>
</p>
</div>
</div>
</div>
<!--<div class="col-xl-6 text-center pl-4 pl-xl-5">
<div class="row">
<div class="col">
<h5>Undergraduate Coordinators</h5>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<p>
<span style="font-weight: 700;">Rtr. Namina Wijetunga
</span><br> 071 100 6847<br>
<span style="font-size: 12px;">[email protected]</span>
</p>
</div>
<div class="col-sm-4">
<p>
<span style="font-weight: 700;">Rtr. Tamashi Kaviraj
</span><br> 076 686 0833<br>
<span style="font-size: 12px;">[email protected]</span>
</p>
</div>
<div class="col-sm-4">
<p>
<span style="font-weight: 700;">Rtr. Upeksha Harasgama
</span><br>076 218 3500
<br>
<span style="font-size: 12px;">[email protected]</span>
</p>
</div>
</div>
</div>-->
</div>
</div>
</section>
<footer id="footer">
<div class="container text-center py-4">
<div class="mr-md-auto mb-3 text-center">
<div class="copyright" style="text-align: center;">
© Copyright <span>Rotaract Club of University of Moratuwa</span>
</div>
</div>
<div class="social-links text-center pt-3 pt-md-0">
<a href="https://www.facebook.com/uom.rur/" class="facebook">
<ion-icon name="logo-facebook" class="ion-logo-facebook"></ion-icon>
</a>
<a href="mailto:[email protected]" class="email">
<ion-icon name="mail" class="ion-ios-mail"></ion-icon>
</a>
<a href="https://www.instagram.com/rotaractmora/" class="instagram">
<ion-icon name="logo-instagram" class="ion-logo-instagram"></ion-icon>
</a>
<a href="https://www.linkedin.com/company/rotaract-club-of-university-of-moratuwa" class="linkedin">
<ion-icon name="logo-linkedin" class="ion-logo-linkedin"></ion-icon>
</a>
<a href="https://www.youtube.com/user/rotaractmora" class="youtube">
<ion-icon name="logo-youtube" class="ion-logo-youtube"></ion-icon>
</a>
</div>
</div>
</footer>
<!-- loader -->
<div id="ftco-loader" class="show fullscreen">
<svg class="circular" width="48px" height="48px">
<circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee" />
<circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10"
stroke="#F96D00" />
</svg>
</div>
<div class="modal fade" id="headsUpModal" tabindex="-1" role="dialog" aria-labelledby="HeadsUpModalTitle"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="HeadsUpModalTitle">Heads Up - Are you ready 2024</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p class="text-justify">The curriculum vitae and job interviews play significant roles in a job
recruitment process. Presenting a CV that showcases one's life work accurately is the key to
open doors for a face-to-face interview. Concurrently, the interviews
allow the company to determine more about the candidate, while the applicant gets the
opportunity to become familiar with the needs of the given position. Therefore, obtaining a
sound knowledge about making proper CVs and facing
interviews can be deemed essential for a more guaranteed recruitment process.</p>
<p class="text-justify">Furthermore, LinkedInprofiles of candidates have transformed into key
factors that support candidate filtering in recruitment processes today. Therefore,working on
building a comprehensive and solid LinkedInprofile that encapsulates
one's skills and capabilities will prove to be hugely beneficial to any individual in search of
a suitable job opportunity.</p>
<p class="text-justify">Through this virtual session, the undergraduates will obtain basic
understandings regarding the above-discussed areas.</p>
<div class="mt-4">
<h5>Target Group</h5>
<ul>
<li>An open session for all undergraduates of the university.</li>
</ul>
</div>
<div class="mt-3">
<h5>Content</h5>
<ul>
<li>Demonstrations of interviews, addressing common weaknesses displayed by undergraduates.
</li>
<li>Guest speech on how to prepare a proper CV and its significance.</li>
<li>A session emphasizing the value and procedure of creating and maintaining one's very own
solid LinkedIn profile.</li>
</ul>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="resumeCenterModal" tabindex="-1" role="dialog" aria-labelledby="ResumeCenterModalTitle"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ResumeCenterModalTitle">Resume Center - Are you ready 2024</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p class="text-justify">The curriculum vitae or the CV is the primary opportunity for a job
applicant to establish a strong initial impression on a potential employer. A quality CV will
surely boost the likelihood of an employment seeker getting a face-to-face
interview. Hence, in the long run, it is indeed rewarding for one to spend extra time and effort
on refining the content and final presentation of one's CV.</p>
<p class="text-justify">Through "Résumé Centre", the final year undergraduates of University of
Moratuwa will obtain the opportunity to get their CVs checked for possible improvements by a
group of recruiting experts in the industry. The collected CVs will
be assessed thoroughly by said experts, and feedback on how to improve their quality will be
provided to their holders through virtual meeting rooms.</p>
<div class="mt-4">
<h5>Target Group</h5>
<ul>
<li>Final year undergraduates of the university.</li>
</ul>
</div>
<div class="mt-3">
<h5>Content</h5>
<ul>
<li>Evaluation of curriculum vitae of the target audience.</li>
</ul>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="careerInsightsModal" tabindex="-1" role="dialog"
aria-labelledby="CareerInsightsModalTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="CareerInsightsModalTitle">Career Insights - Are you ready 2024</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p class="text-justify">Most of the undergraduates manifest a lack of knowledge regarding the career
paths they could pursue following their graduation. Hence, a series of webinars will be
conducted based on the different career fields catered to different
departments of the university by the industry and corporate companies who will be participating
the careerfair, to provide current and future career opportunities in their respective companies
which undergraduates can choose after
their graduation.</p>
<p class="text-justify">Each of these sessions will be carried out in the form of a
demonstrationthrough a virtual platform by bringing in the representativesofthe particular
companies. they will be sharing their career paths and opportunities which will
be providing for the fresh graduates.</p>
<div class="mt-4">
<h5>Target Group</h5>
<ul>
<li>Undergraduates of the respective departments of the university.</li>
</ul>
</div>
<div class="mt-3">
<h5>Content</h5>
<ul>
<li>A series of web seminars on career paths that undergraduates can follow after their
graduation.</li>
</ul>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="theForumModal" tabindex="-1" role="dialog" aria-labelledby="TheForumModalTitle"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="TheForumModalTitle">The Forum - Are you ready 2024</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p class="text-justify">Adjusting into the working world out of university is exciting, yet somewhat
challenging. University of Moratuwa owns many entrepreneurial thinkers who can change the job
world extensively in the future. Though equipped with technical
knowledge, due to the absence of awareness on such topics, many undergraduates abandon their
innovative thoughts completely. Therefore, procuring an understanding regarding the corporate
world beforehand, sets the stage for the
students to realize their career dreams with confidence in the future.</p>
<p class="text-justify">This virtual session will address topics like how one can adapt to working
in a corporate environment, the experiences one could obtain and the challenges one might face
as a corporate citizen, and how one can handle corporate expectations
and stress. Moreover,the session content from previous years has been revised this year to also
lay emphasis upon giving undergraduates an insight into the entrepreneurial world, initiating
startups and life at startups.</p>
<div class="mt-4">
<h5>Target Group</h5>
<ul>
<li>An open session for all undergraduates of the university.</li>
</ul>
</div>
<div class="mt-3">
<h5>Content</h5>
<ul>
<li>An expert panel discussion on adapting to the corporate environment,handling corporate
expectations,and working towards achieving entrepreneurial goals.</li>
</ul>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="theImageModal" tabindex="-1" role="dialog" aria-labelledby="TheImageModalTitle"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="TheImageModalTitle">The Image - Are you ready 2024</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p class="text-justify">Personal branding is telling an individual's story in a means that reflects
his conduct, behavior, attitudes,and unspoken words. A unique personal brand is what would make
a professional stand out from the rest and risealong his career
ladder.'The Image'will be focused on elaborating on how to create the perfect image of oneself
through the right applications of personal branding. The session will be conducted by a
celebratory personality who has excelled in
personal branding.</p>
<div class="mt-4">
<h5>Target Group</h5>
<ul>
<li>An open session for all undergraduates of the university.</li>
</ul>
</div>
<div class="mt-3">
<h5>Content</h5>
<ul>
<li>A guest speech by a celebrity on personal branding and its importance in the modern
world.</li>
</ul>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="flagshipDayModal" tabindex="-1" role="dialog" aria-labelledby="FlagshipDayModalTitle"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="FlagshipDayModalTitle">Flagship Day - Are you ready 2024</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p class="text-justify">'Flagship Fair' is the limelight of 'Are you Ready?', in which the
prospective employers' role comes intoplay. The employers are given the opportunity to identify
skillful and qualified undergraduates of University of Moratuwa, through
mock and real interviews.</p>
<p class="text-justify">This year, the interviews conducted for the students of the final year batch
of the university will be carried out virtually. All interviews will be carried out through the
exclusive 'Are You Ready?'' online portal.</p>
<div class="mt-4">
<h5>Target Group</h5>
<ul>
<li>Final year students of the university (approximately around 1000) will be the focal
point of this event.</li>
</ul>
</div>
<div class="mt-3">
<h5>Content</h5>
<ul>
<li>Mock or real interviews will be conducted by the companies in a manner that benefits the
students in identifying the true potential in themselves and in achieving their career
goals.</li>
<li>The performance of the interviewees will be evaluated and presented then and there, in
order for the undergraduates to assess their performances.</li>
</ul>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="readMoreModal" tabindex="-1" role="dialog" aria-labelledby="ReadMoreModalTitle"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="FlagshipDayModalTitle">Are you ready? 2024</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p class="text-justify">"Are You Ready?" stands as a monumental initiative led by the Rotaract Club of the University of Moratuwa in partnership with the Career Guidance Unit. Our primary focus is 4th year undergraduates from our university, aiming to guide them towards a secure entry into the professional world. The scope of this endeavor knows no bounds, with over 100 companies aligning to provide opportunities for budding professionals. This project promises to be a valuable asset for those aspiring to forge strong connections with companies and their managers, even if the finish line of their degree is still on the horizon. In the initial stages, participants will gain the essential knowledge and training to confidently engage with industry experts.👩💼👨💼</p>
<p class="text-justify">⏩Career Fair will be supported by subprojects</p>
<p class="text-justify">Global Pathway - The bridge to the gap between students and international study or job opportunities. Students may get to know about foreign internships, higher studies and foreign job opportunities from global networking to publish their CV to international standards.
</p>
<p class="text-justify">Image - Series of Insightful sessions on entrepreneurship and personal branding will be conducted by Sri Lankan icons.</p>
<p class="text-justify">Heads Up - Series of sessions that teaches the fundamental skills of creating a professional curriculum vitae (CV), mastering job interviews and graduate study opportunities.
</p>
<p class="text-justify">Resume Center - Resume Center provided final year undergraduates with the opportunity to get their CVs checked by recruiting experts in the industry, who later advised valuable feedback on how to improve their quality.
</p>
<p class="text-justify">Career Insight - Series of webinars based on different career fields, catering to the different departments of the University.</p>
<p class="text-justify">Flagship Fair - The main event of RUR which created a simulated corporate atmosphere on the university premises where students were able to face real-life and mock interviews with industry professionals. This gave the students a perfect opportunity to get noticed by prospective employers and secure their dream job.
</p>
<p class="text-justify">Anticipate an exciting journey that encourages exploration of every facet, unveiling hidden surprises and creating lasting memories.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="lsegModal" tabindex="-1" role="dialog" aria-labelledby="LsegModalTitle"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">