-
Notifications
You must be signed in to change notification settings - Fork 3
/
obu.html
1230 lines (1089 loc) · 83 KB
/
obu.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
<!--
* Official Website of De La Salle College, Colombo-15
* A project of DLS ICT 2021 Batch
* Design & Develop by : Kasun Chanuka Fernando
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Old Boy's Union | De La Salle College, Colombo - "Indivisa Manent"</title>
<!--favicon-->
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<!--Style Starts-->
<link href='https://fonts.googleapis.com/css?family=Oxygen:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/scroll.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script defer src="/_vercel/insights/script.js"></script>
<!--Site Meta-->
<meta property="og:locale" content="en_GB" />
<meta property="og:site_name" content="De La Salle College,Colombo - Indivisa Manent" />
<meta property="og:type" content="Website" />
<meta property="og:title" content="Old Boys Union | De La Salle College, Colombo - Indivisa Manent" />
<meta property="og:url" content="https://www.delasalle.lk/" />
<meta property="og:image" content="https://raw.githubusercontent.com/kasuncfdo/dls/main/img/Meta/dlsobuogimg2.jpg"/>
<meta property="og:image:secure_url" content="hhttps://raw.githubusercontent.com/kasuncfdo/dls/main/img/Meta/dlsobuogimg2.jpg" />
<meta property="og:image:width" content="1024" />
<meta property="og:image:height" content="567" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="" />
<meta name="twitter:domain" content="www.delasalle.lk" />
<meta name="twitter:title" content="Old Boys Union | De La Salle College, Colombo - Indivisa Manent" />
<meta name="twitter:image" content="https://raw.githubusercontent.com/kasuncfdo/dls/main/img/Meta/dlsobuogimg2.jpg"/>
<!-- Primary Meta Tags -->
<title>Old Boys Union | De La Salle College, Colombo - Indivisa Manent</title>
<meta name="title" content="Old Boys Union | De La Salle College, Colombo - Indivisa Manent">
<meta name="description" content="De La Salle College, Colombo is the only school in Sri Lanka dedicated to the Patron Saint of Christian Teachers St. John Baptist de la Salle, founder of the congregation of De La Salle Brothers of the Christian Schools in Latin: "Fratres Scholarum Christianarum".">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://delasalle.lk">
<meta property="og:title" content="Old Boys Union | De La Salle College, Colombo - Indivisa Manent">
<meta property="og:description" content="De La Salle College, Colombo is the only school in Sri Lanka dedicated to the Patron Saint of Christian Teachers St. John Baptist de la Salle, founder of the congregation of De La Salle Brothers of the Christian Schools in Latin: "Fratres Scholarum Christianarum".">
<meta property="og:image" content="https://raw.githubusercontent.com/kasuncfdo/dls/main/img/Meta/dlsobuogimg2.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://delasalle.lk">
<meta property="twitter:title" content="Old Boys Union | De La Salle College, Colombo - Indivisa Manent">
<meta property="twitter:description" content="De La Salle College, Colombo is the only school in Sri Lanka dedicated to the Patron Saint of Christian Teachers St. John Baptist de la Salle, founder of the congregation of De La Salle Brothers of the Christian Schools in Latin: "Fratres Scholarum Christianarum".">
<meta property="twitter:image" content="https://raw.githubusercontent.com/kasuncfdo/dls/main/img/Meta/dlsobuogimg2.jpg">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<div class="loader_bg">
<div class="loader"></div>
</div>
<div class="progress-wrap">
<svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" />
</svg>
</div>
<!-- Start Your Body Code From here -->
<div class="wrapper">
<!-- header starts here -->
<!-- header -->
<header id="header" class="">
<nav class="light" style="background-color: rgba(10,40);">
<ul style="padding: 10px 35px;">
<li>
<div class="nav-icons search-super">
<div class="search">
<input type="text" placeholder=" ">
<div>
<svg>
<use xlink:href="#path">
</use></svg>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160 28" id="path">
<path d="M32.9418651,-20.6880772 C37.9418651,-20.6880772 40.9418651,-16.6880772 40.9418651,-12.6880772 C40.9418651,-8.68807717 37.9418651,-4.68807717 32.9418651,-4.68807717 C27.9418651,-4.68807717 24.9418651,-8.68807717 24.9418651,-12.6880772 C24.9418651,-16.6880772 27.9418651,-20.6880772 32.9418651,-20.6880772 L32.9418651,-29.870624 C32.9418651,-30.3676803 33.3448089,-30.770624 33.8418651,-30.770624 C34.08056,-30.770624 34.3094785,-30.6758029 34.4782612,-30.5070201 L141.371843,76.386562" transform="translate(83.156854, 22.171573) rotate(-225.000000) translate(-83.156854, -22.171573)"></path>
</symbol>
</svg>
</li><li><a href="index.html"><img src="https://raw.githubusercontent.com/kasuncfdo/dls/main/College%20Assests/College-Items/DLS_WEBCREST.png" alt="" class="top-crest" id="top-crest" style="transform: scale(0.8);"></a></li>
<li>
<div class="nav-icons">
<div class="navbar navbar-inverse navbar-custom" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
</div>
</div>
</li>
</ul>
<hgroup class="site-title">
<h1 style="text-align: center; margin-bottom:0 ; text-decoration: none;" class="site-title">
<a href="index.html" title="" style="text-decoration: none; padding-top: -54rem; color: rgb(255, 255, 255);" rel="home">DE LA SALLE COLLEGE MUTWAL</a></h1>
</hgroup>
<br>
</nav>
<div class="navbar navbar-inverse navbar-custom" role="navigation">
<div class="container">
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">HOME</a></li>
<li>
<a href="#" class="dropdown-toggle" data-toggle="dropdown">ABOUT COLLEGE<b
class="caret"></b></a>
<ul class="dropdown-menu multi-level">
<li><a href="about.html">OVERVIEW</a></li>
<li class="dropdown-submenu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">COLLEGE IDENTITY</a>
<ul class="dropdown-menu">
<li><a href="Identity/mission-vision.html">COLLEGE VISION & MISSION</a></li>
<li><a href="Identity/college-motto-and-flag_colours.html">COLLEGE FLAG | MOTTO | COLOURS</a></li>
<li><a href="Identity/college-crest.html">COLLEGE CREST</a></li>
<li><a href="college-anthem.html">COLLEGE ANTHEM</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">HISTORY AND TRADITIONS</a>
<ul class="dropdown-menu">
<li><a href="History-and-Location.html">HISTORY OF COLLEGE</a></li>
<li><a href="BRIEF-HISTORY.html">BRIEF HISTORY OF DE LA SALLE</a></li>
<li><a href="Chronoloy-College-History.html">CHRONOLOGY COLLEGE HISTORY</a></li>
<li><a href="The-Coat-of-Arms.html">THE-COAT-OF-ARMS</a></li>
<li><a href="College-Directors.html">PAST PRINCIPALS</a></li>
<!--li><a href="Identity/tcs.html">TCS</a></li-->
</ul>
</li>
<li><a href="directors_message.html">PRINCIPAL'S MESSAGE</a></li>
<li><a href="College-Directors.html">PAST COLLEGE PRINCIPALS</a>
</li>
<li class="dropdown-submenu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">COLLEGE FACILITIES</a>
<ul class="dropdown-menu">
<li><a href="Physical-Facilities.html">PHYSICAL FACILITIES</a></li>
<li><a href="School-Layout-Plan.html">COLLEGE LAYOUT</a></li>
<!--li><a href="Identity/tcs.html">TCS</a></li-->
</ul>
</li>
<!--li><a href="Chronology College History.html">CHRONOLOGY COLLEGE HISTORY</a></li-->
<li><a href="Activities-in-Development-Stage.html">ACTIVITIES IN DEVELOPMENT STAGE</a></li>
<li><a href="The-Coat-of-Arms.html">THE COAT OF ARMS O THE DE LA SALLE BROTHERS</a></li>
<li><a href="Bridge-between-the-College-and-the-Old-Boys.html">BRIDGE BETWEEN THE COLLEGE AND THE OLD-BOYS</a></li>
</ul>
</li>
<li>
<a href="#" class="dropdown-toggle" data-toggle="dropdown">ADMINISTRATION <b
class="caret"></b></a>
<ul class="dropdown-menu multi-level">
<li><a href="Organizational-Structure.html">OVERVIEW</a></li>
<li><a href="directors_message.html">PRINCIPAL</a></li>
<li><a href="deputy-principal.html">DEPUTY PRINCIPAL</a></li>
<li><a href="Under_Construction.html">ACADEMIC STAFF</a></li>
<li><a href="student_corner.html">STUDENTS CORNER</a></li>
</ul>
</li>
<li>
<a href="#" class="dropdown-toggle" data-toggle="dropdown">ACADEMICS <b
class="caret"></b></a>
<ul class="dropdown-menu multi-level">
<li>
<a href="#" class="dropdown-toggle" data-toggle="dropdown">GRADE 5</a>
<ul>
<!--li><a href="Under_Construction.html">admissions</a></li-->
<!--li><a href="#">IT</a></li-->
</ul>
</li>
<li>
<a href="#" class="dropdown-toggle" data-toggle="dropdown">GCE O/L</a>
<ul>
<!--li><a href="Under_Construction.html">admissions</a></li-->
</ul>
</li>
<li>
<a href="#" class="dropdown-toggle" data-toggle="dropdown">GCE A/L</a>
<ul>
<!--li><a href="Under_Construction.html">admissions</a></li-->
</ul>
</li>
<li><a href="Academic-Progress.html">ACADEMIC PROGRESS</a></li>
<!--li><a href="Academics.php.html">ACADEMIC COUNCIL</a></li-->
<!--li><a href="#">More</a></li-->
<li><a href="Under_Construction.html">NON ACADEMIC</a></li>
</ul>
</li>
<!--li>
<a href="#" class="dropdown-toggle" data-toggle="dropdown">ADMINISTRATION <b
class="caret"></b></a>
<ul class="dropdown-menu multi-level">
<li><a href="directors_message.html">Principal</a></li>
<li><a href="Under_Construction.html">Deputy Principal</a></li>
<li><a href="Under_Construction.html">Academic Staff</a></li>
</ul>
</li-->
<!--li>
<a href="obu.html" class="dropdown-toggle" data-toggle="dropdown">OLD BOYS UNION <b class="caret"></b></a>
<ul class="dropdown-menu multi-level">
<li><a href="obu.html">OVERVIEW</a></li>
<li><a href="Old-Boys-Union.html">OBU INTRODUCTION</a></li>
<li><a href="OBU-Constitution.html">OBU CONSTITUTION</a></li>
<li><a href="Under_Construction.html">ANNOUNCEMENTS</a></li>
<li><a href="Under_Construction.html">Coming soon</a></li>
<li><a href="Under_Construction.html">Coming soon</a></li>
<li><a href="Under_Construction.html">Coming soon</a></li>
</ul>
</li-->
<li>
<a href="#" class="dropdown-toggle" data-toggle="dropdown">EXTRA CURRICULAR <b
class="caret"></b></a>
<ul class="dropdown-menu multi-level">
<li><a href="Co-curiiicular-Activities.html">CURRICULAR ACTIVITIES</a></li>
<li><a href="Sports-and-Games.html">SPORTS AND GAMES</a></li>
<li><a href="clubs-and-societies.html">CLUBS & SOCIETIES</a></li>
<li><a href="announcements.html">ANNOUNCEMENTS</a></li>
<li><a href="news.html">NEWS AND EVENTS</a></li>
<!--li><a href="Under_Construction.html">HIGHLIGHTS & ACHIEVEMENTS</a></li-->
</ul>
</li>
<!--li>
<a href="#" class="dropdown-toggle" data-toggle="dropdown">MORE <b
class="caret"></b></a>
<ul class="dropdown-menu multi-level">
<li><a href="announcements.html">Announcements</a></li>
<li><a href="view-events.html">News & Events</a></li>
<li><a href="Activities-in-Development-Stage.html">Activities-in-Development-Stage</a></li>
<li><a href="https://en.wikipedia.org/wiki/De_La_Salle_College,_Colombo">Wikipedia</a></li>
<li><a href="Under_Construction.html">Student's Corner</a></li>
<li><a href="Under_Construction.html" target="_blank">Coming soon</a></li>
<li><a href="Under_Construction.html">Coming soon</a></li>
<li><a href="Under_Construction.html">Coming soon</a></li>
<li><a href="Under_Construction.html">Coming soon</a></li>
</ul>
</li-->
<!--li><a href="gallery.html">GALLERY</a></li-->
<!--li>
<a href="#" class="dropdown-toggle" data-toggle="dropdown">MORE <b
class="caret"></b></a>
<ul class="dropdown-menu multi-level">
<li><a href="announcements.html">Announcements</a></li>
<li><a href="view-events.html">News & Events</a></li>
<li><a href="Activities-in-Development-Stage.html">Activities-in-Development-Stage</a></li>
<li><a href="https://en.wikipedia.org/wiki/De_La_Salle_College,_Colombo">Wikipedia</a></li>
<li><a href="Under_Construction.html">Student's Corner</a></li>
<li><a href="Under_Construction.html" target="_blank">Coming soon</a></li>
<li><a href="Under_Construction.html">Coming soon</a></li>
<li><a href="Under_Construction.html">Coming soon</a></li>
<li><a href="Under_Construction.html">Coming soon</a></li>
</ul>
</li-->
<!--li><a href="contact-us.html">CONTACT US</a></li-->
<li><a href="gallery.html">GALLERY</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
</nav>
</header>
<!-- /header -->
<div style="text-align: center;">
<a href="#" target="_blank"-->
<img class="responsive-img" src="img/Obu/DLS_OBU_ MAIN_HEAD.jpg">
</a>
</div>
<!-- Content wrapper -->
<div class="contents-wrapper">
<!-- Contents starts here -->
<div class="content">
<div><span id="docs-internal-guid-2870cd91-7fff-a45a-4978-3b4323cc818b" style="font-size: x-large;"><h1 style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="color: red; font-style: italic; white-space: pre-wrap;"><strong> Old Boys’ Union </strong></span></h1></span></div><span id="docs-internal-guid-5c99975b-7fff-f95a-4afc-18f4ee75b23c"><br /><br /><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: justify;"><span style="color: navy; font-family: "Gentium Basic", serif; font-size: 12pt; font-style: italic; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">“Be loyal to your Alma Mater, renew past, cherished and perhaps long-forgotten acquaintances, and endeavour to maintain cordial relations with your former teachers and school mates… . It is a link with the past…..... It is a help for the future…..”</span></p><br /><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: justify;"><span style="color: navy; font-family: "Gentium Basic", serif; font-size: 12pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">This was the message sent to all Old Boys of the College by the Founder President of the Old Boys’ Union, Rev Bro Luke Gregory, who has been to many generations of Old Lasallians, an inalienable part of the Old School.</span></p><br /><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: justify;"><span style="color: navy; font-family: "Gentium Basic", serif; font-size: 12pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Rev Bro Luke Gregory inaugurated the Union on February 03</span><span style="color: navy; font-family: "Gentium Basic", serif; font-size: 12pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><span style="font-size: 0.6em; vertical-align: super;">rd</span></span><span style="color: navy; font-family: "Gentium Basic", serif; font-size: 12pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"> 1929, in the presence of about 100 Old Boys and Teachers. Most of those original members of the Union have now gone for their reward, but during these 74 years, the Union has extended its fullest co-operation to the College authorities, true to its motto: to promote fellowship among the Old Boys of De La Salle College, and to contribute to the encouragement of studies, games, etc; among the present boys. </span></p><br /><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: justify;"><span style="color: navy; font-family: "Gentium Basic", serif; font-size: 12pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">When look upon the years which have now faded into history, we feel a sense of pride in having succeeded during this three quarter century. Our old Boys have never turned a deaf ear to the requests the College has made to them from time to time in connection with such functions as Sports Meet, College Day, Teachers Day, Parents Day and Prize Giving. They are also ready to rally round to show their appreciation of services of former Directors or Teachers.</span></p><br /><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: justify;"><span style="color: navy; font-family: "Gentium Basic", serif; font-size: 12pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Times may change, and new generations may come and go, but De La Salle will go on forever. She must go on, growing richer and stronger, because she will have to face bigger and harder problems in the future. She must have all the support and loyalty of her Old Boys, all the keenness of her Students, all the enthusiasm and goodwill of her Staff to carry on the good work, which she cannot and must not fail. </span></p><br /><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: justify;"><span style="color: navy; font-family: "Gentium Basic", serif; font-size: 12pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">This is an appeal to all Old Boys of De La Salle to rally round the Old School. She is calling us all and we cannot ignore that call. It is the call of the Mother to the scattered family for one grand re-union whose joyous conviviality must resound through the next hundred years.</span></p><br /><br /><br /><br /><h1 style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span face=""Lucida Sans", sans-serif" style="color: navy; font-size: x-large; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;">Indivisa Manent !</span></h1><br /><br /><br /><br /><div align="left" dir="ltr" style="margin-left: 0pt;"><table style="border-collapse: collapse; border: none;"><colgroup><col width="624"></col></colgroup><tbody><tr style="height: 0pt;"><td style="overflow-wrap: break-word; overflow: hidden; vertical-align: middle;"><br /><div align="left" dir="ltr" style="margin-left: 0pt;"><table style="border-collapse: collapse; border: none;"><colgroup><col width="624"></col></colgroup><tbody><tr style="height: 0pt;"><td style="overflow-wrap: break-word; overflow: hidden; padding: 2.25pt; vertical-align: middle;"><p dir="ltr" style="line-height: 1.2; margin-bottom: 14pt; margin-top: 0pt;"><span style="color: #003366; font-family: Arial; font-size: 12pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Alumni.NET's Goal </span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 14pt; margin-top: 14pt;"><span style="color: #003366; font-family: Arial; font-size: 12pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">We aim to help further enrich people's lives by facilitating communication in their relationships with people and strive to be the best and largest alumni directory for the world. </span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 14pt; margin-top: 14pt;"><span style="color: #003366; font-family: Arial; font-size: 12pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Alumni.NET's Objective</span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 14pt;"><span style="color: #003366; font-family: Arial; font-size: 12pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">We shall make the world smaller for people by using information technology to the fullest and by maximizing the advantages the web can offer. </span></p></td></tr></tbody></table></div><br /></td></tr><tr style="height: 0pt;"><td style="overflow-wrap: break-word; overflow: hidden; vertical-align: middle;"><br /><div align="left" dir="ltr" style="margin-left: 0pt;"><table style="border-collapse: collapse; border: none;"><colgroup><col width="480"></col></colgroup><tbody><tr style="height: 0pt;"><td style="overflow-wrap: break-word; overflow: hidden; vertical-align: middle;"><br /></td></tr></tbody></table></div><br /></td></tr></tbody></table></div><br /><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="color: green; font-family: "Old English Text MT"; font-size: 24pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">The Old Boys Directory</span><span style="color: green; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"> </span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><a href="http://www.stcmount.org/Directory/A.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">A</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/B.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">B</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/C.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">C</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/D.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">D</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/E.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">E</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/F.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">F</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/G.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">G</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/H.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">H</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/I.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">I</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/J.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">J</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/K.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">K</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/L.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">L</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/M.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">M</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/N.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">N</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/O.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">O</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/P.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">P</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/QR.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">QR</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/S.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">S</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/T.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">T</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/U.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">U</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/V.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">V</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/W.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">W</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/XYZ.htm" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">XYZ</span><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"><br /></span></a><a href="http://www.stcmount.org/oba.html" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">Back to OBA</span></a><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"> </span><a href="http://www.stcmount.org/Directory/dataentry.html" style="text-decoration-line: none;"><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">Enter Your Details</span></a></p><br /><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><br /></span><span style="color: green; font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Listed here are the details of many old boys, from around the world. If you would like to be included in this list, please follow the above link and present the required information about yourself.</span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="font-family: Arial; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><br /><br /></span></p></span>
</div>
</div>
</div>
<!-- #region Jssor Slider Begin -->
<!-- Generator: Jssor Slider Composer -->
<!-- Source: https://www.jssor.com/demos/full-width-slider.slider/=edit -->
<script src="js/jssor.slider-28.1.0.min.js" type="text/javascript"></script>
<script type="text/javascript">
window.jssor_1_slider_init = function() {
var jssor_1_SlideoTransitions = [
[{b:-1,d:1,ls:0.5},{b:0,d:1000,y:5,e:{y:6}}],
[{b:-1,d:1,ls:0.5},{b:200,d:1000,y:25,e:{y:6}}],
[{b:-1,d:1,ls:0.5},{b:400,d:1000,y:45,e:{y:6}}],
[{b:-1,d:1,ls:0.5},{b:600,d:1000,y:65,e:{y:6}}],
[{b:-1,d:1,ls:0.5},{b:800,d:1000,y:85,e:{y:6}}],
[{b:-1,d:1,ls:0.5},{b:500,d:1000,y:195,e:{y:6}}],
[{b:0,d:2000,y:30,e:{y:3}}],
[{b:-1,d:1,rY:-15,tZ:100},{b:0,d:1500,y:30,o:1,e:{y:3}}],
[{b:-1,d:1,rY:-15,tZ:-100},{b:0,d:1500,y:100,o:0.8,e:{y:3}}],
[{b:500,d:1500,o:1}],
[{b:0,d:1000,y:380,e:{y:6}}],
[{b:300,d:1000,x:80,e:{x:6}}],
[{b:300,d:1000,x:330,e:{x:6}}],
[{b:-1,d:1,r:-110,sX:5,sY:5},{b:0,d:2000,o:1,r:-20,sX:1,sY:1,e:{o:6,r:6,sX:6,sY:6}}],
[{b:0,d:600,x:150,o:0.5,e:{x:6}}],
[{b:0,d:600,x:1140,o:0.6,e:{x:6}}],
[{b:-1,d:1,sX:5,sY:5},{b:600,d:600,o:1,sX:1,sY:1,e:{sX:3,sY:3}}]
];
var jssor_1_options = {
$AutoPlay: 1,
$LazyLoading: 1,
$CaptionSliderOptions: {
$Class: $JssorCaptionSlideo$,
$Transitions: jssor_1_SlideoTransitions
},
$ArrowNavigatorOptions: {
$Class: $JssorArrowNavigator$
},
$BulletNavigatorOptions: {
$Class: $JssorBulletNavigator$,
$SpacingX: 20,
$SpacingY: 20
}
};
var jssor_1_slider = new $JssorSlider$("jssor_1", jssor_1_options);
/*#region responsive code begin*/
var MAX_WIDTH = 1600;
function ScaleSlider() {
var containerElement = jssor_1_slider.$Elmt.parentNode;
var containerWidth = containerElement.clientWidth;
if (containerWidth) {
var expectedWidth = Math.min(MAX_WIDTH || containerWidth, containerWidth);
jssor_1_slider.$ScaleWidth(expectedWidth);
}
else {
window.setTimeout(ScaleSlider, 30);
}
}
ScaleSlider();
$Jssor$.$AddEvent(window, "load", ScaleSlider);
$Jssor$.$AddEvent(window, "resize", ScaleSlider);
$Jssor$.$AddEvent(window, "orientationchange", ScaleSlider);
/*#endregion responsive code end*/
};
</script>
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300italic,regular,italic,700,700italic&subset=latin-ext,greek-ext,cyrillic-ext,greek,vietnamese,latin,cyrillic" rel="stylesheet" type="text/css" />
<style>
/* jssor slider loading skin spin css */
.jssorl-009-spin img {
animation-name: jssorl-009-spin;
animation-duration: 1.6s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes jssorl-009-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/*jssor slider bullet skin 132 css*/
.jssorb132 {position:absolute;}
.jssorb132 .i {position:absolute;cursor:pointer;}
.jssorb132 .i .b {fill:#fff;fill-opacity:0.8;stroke:#000;stroke-width:1600;stroke-miterlimit:10;stroke-opacity:0.7;}
.jssorb132 .i:hover .b {fill:#000;fill-opacity:.7;stroke:#fff;stroke-width:2000;stroke-opacity:0.8;}
.jssorb132 .iav .b {fill:#000;stroke:#fff;stroke-width:2400;fill-opacity:0.8;stroke-opacity:1;}
.jssorb132 .i.idn {opacity:0.3;}
.jssora051 {display:block;position:absolute;cursor:pointer;}
.jssora051 .a {fill:none;stroke:#fff;stroke-width:360;stroke-miterlimit:10;}
.jssora051:hover {opacity:.8;}
.jssora051.jssora051dn {opacity:.5;}
.jssora051.jssora051ds {opacity:.3;pointer-events:none;}
</style>
<svg viewbox="0 0 0 0" width="0" height="0" style="display:block;position:relative;left:0px;top:0px;">
<defs>
<filter id="jssor_1_flt_1" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stddeviation="4"></feGaussianBlur>
</filter>
<radialGradient id="jssor_1_grd_2">
<stop offset="0" stop-color="#fff"></stop>
<stop offset="1" stop-color="#000"></stop>
</radialGradient>
<mask id="jssor_1_msk_3">
<path fill="url(#jssor_1_grd_2)" d="M600,0L600,400L0,400L0,0Z" x="0" y="0" style="position:absolute;overflow:visible;"></path>
</mask>
</defs>
</svg>
<div id="jssor_1" style="position:relative;margin:0 auto;top:0px;left:0px;width:1600px;height:560px;overflow:hidden;visibility:hidden;">
<!-- Loading Screen -->
<div data-u="loading" class="jssorl-009-spin" style="position:absolute;top:0px;left:0px;width:100%;height:100%;text-align:center;background-color:rgba(0,0,0,0.7);">
<img style="margin-top:-19px;position:relative;top:50%;width:38px;height:38px;" src="img/spin.svg" />
</div>
<div data-u="slides" style="cursor:default;position:relative;top:0px;left:0px;width:1600px;height:620px;overflow:hidden;">
<div style="background-color:#110888;">
<img data-u="image" style="opacity:0.9;" data-src="img/pb-beer-1513436-1600.png" />
<div data-ts="flat" data-p="275" data-po="40% 50%" style="left:150px;top:40px;width:800px;height:390px;position:absolute;">
<div data-to="50% 50%" data-t="0" style="left:50px;top:520px;width:400px;height:100px;position:absolute;color:#da0d0d;font-family:'Roboto Condensed',sans-serif;font-size:84px;font-weight:900;letter-spacing:0.5em;">Life at</div>
<div data-to="50% 50%" data-t="1" style="left:50px;top:540px;width:400px;height:100px;position:absolute;opacity:0.5;color:rgb(185, 36, 16);font-family:'Roboto Condensed',sans-serif;font-size:84px;font-weight:900;letter-spacing:0.5em;">Life at</div>
<div data-to="50% 50%" data-t="2" style="left:50px;top:560px;width:400px;height:100px;position:absolute;opacity:0.25;color:#f1f0ee;font-family:'Roboto Condensed',sans-serif;font-size:84px;font-weight:900;letter-spacing:0.5em;">Life at</div>
<div data-to="50% 50%" data-t="3" style="left:50px;top:580px;width:400px;height:100px;position:absolute;opacity:0.125;color:#fcf5eb;font-family:'Roboto Condensed',sans-serif;font-size:84px;font-weight:900;letter-spacing:0.5em;">Life at</div>
<div data-to="50% 50%" data-t="4" style="left:50px;top:600px;width:400px;height:100px;position:absolute;opacity:0.06;color:#fffcf7;font-family:'Roboto Condensed',sans-serif;font-size:84px;font-weight:900;letter-spacing:0.5em;">Life at</div>
<div data-to="50% 50%" data-t="5" style="left:50px;top:710px;width:700px;height:100px;position:absolute;color:#270dbb;font-family:'Roboto Condensed',sans-serif;font-size:84px;font-weight:900;letter-spacing:0.5em;">lasallions</div>
</div>
</div>
<div>
<img data-u="image" data-src="img/px-apartment-chairs-contemporary-2015560-1600.png" />
<div data-ts="flat" data-p="540" data-po="40% 50%" style="left:0px;top:0px;width:1600px;height:560px;position:absolute;">
<div data-to="50% 50%" data-ts="preserve-3d" data-t="6" style="left:350px;top:360px;width:900px;height:500px;position:absolute;">
<svg viewbox="0 0 800 60" data-to="50% 50%" width="800" height="60" data-t="7" style="left:0px;top:-70px;display:block;position:absolute;opacity:0;font-family:'Roboto Condensed',sans-serif;font-size:60px;font-weight:700;letter-spacing:0.05em;overflow:visible;">
<text fill="#454447" stroke="#ff9500" stroke-width="2" text-anchor="middle" x="400" y="60">
</text>
</svg>
<div data-to="50% 50%" data-t="8" style="filter:url('#jssor_1_flt_1');left:200px;top:0px;width:600px;height:60px;position:absolute;opacity:0;color:#C49D8F;font-family:Roboto Condensed, sans-serif;font-size:48px;line-height:1.2;letter-spacing:0.1em;text-align:center;">De La Salle</div>
<svg viewbox="0 0 800 100" width="800" height="100" data-t="9" style="left:40px;top:250px;display:block;position:absolute;opacity:0;font-family:'Roboto Condensed',sans-serif;font-size:100px;font-weight:900;letter-spacing:0.5em;overflow:visible;">
<text fill="rgba(255,255,255,0.7)" stroke="#ff9500" text-anchor="middle" x="400" y="100">OLD BOYS UNION
</text>
</svg>
</div>
</div>
</div>
<div style="background-color:#000000;">
<img data-u="image" style="opacity:0.8;" data-src="img/px-back-view-boats-couple-2612852-1600.jpg" />
<div data-ts="flat" data-p="1080" style="left:0px;top:0px;width:1600px;height:4px;position:absolute;">
<svg viewbox="0 0 600 400" data-ts="preserve-3d" width="600" height="400" data-tchd="jssor_1_msk_3" style="left:255px;top:0px;display:block;position:absolute;overflow:visible;">
<g mask="url(#jssor_1_msk_3)">
<path data-to="300px -180px" fill="none" stroke="rgba(250,251,252,0.5)" stroke-width="20" d="M410-350L410-10L190-10L190-350Z" x="190" y="-350" data-t="10" style="position:absolute;overflow:visible;"></path>
</g>
</svg>
<svg viewbox="0 0 800 72" data-to="50% 50%" width="800" height="72" data-t="11" style="left:-800px;top:78px;display:block;position:absolute;font-family:'Roboto Condensed',sans-serif;font-size:84px;font-weight:900;overflow:visible;">
<text fill="#fafbfc" text-anchor="middle" x="400" y="72">INDIVISA
</text>
</svg>
<svg viewbox="0 0 800 72" data-to="50% 50%" width="800" height="72" data-t="12" style="left:1600px;top:153px;display:block;position:absolute;font-family:'Roboto Condensed',sans-serif;font-size:60px;font-weight:900;overflow:visible;">
<text fill="#fafbfc" text-anchor="middle" x="400" y="72">MANENT
</text>
</svg>
</div>
</div>
<div>
<img data-u="image" data-src="img/yamamoto.jpg" />
<div data-ts="flat" data-p="1080" style="left:0px;top:0px;width:1600px;height:560px;position:absolute;">
<div data-to="50% 50%" data-t="13" style="left:100px;top:-20px;width:800px;height:200px;position:absolute;opacity:0;">
<div style="left:94px;top:35px;width:480px;height:90px;position:absolute;color:rgba(74,217,205,0.5);font-family:'Roboto Condensed',sans-serif;font-size:72px;line-height:1.2;">CREATION</div>
<div style="left:307px;top:115px;width:400px;height:50px;position:absolute;color:rgba(74,217,205,0.5);font-family:'Roboto Condensed',sans-serif;font-size:42px;line-height:1.1;text-align:center;background-color:rgba(72,77,76,0.5);">for creative peoples</div>
</div>
</div>
</div>
<div>
<img data-u="image" data-src="img/wine-1600.png" />
<div data-ts="flat" data-p="1080" style="left:0px;top:0px;width:1600px;height:560px;position:absolute;">
<div data-to="50% 50%" data-t="14" style="left:690px;top:140px;width:600px;height:150px;position:absolute;opacity:0;color:#ffffff;font-family:Georgia,'Times New Roman',Times,serif;font-size:60px;line-height:1.2;letter-spacing:0.1em;">De La Salle<br />Has a long history.</div>
<img data-to="50% 50%" data-t="15" style="left:780px;top:350px;width:344px;height:157px;position:absolute;opacity:0;max-width:344px;" data-src="img/wine-atlantic-ocean.png" />
<img data-to="50% 50%" data-t="16" style="left:1330px;top:8px;width:172px;height:131px;position:absolute;opacity:0;max-width:172px;" data-src="img/wine-badge.png" />
</div>
</div>
</div><a data-scale="0" href="https://www.jssor.com" style="display:none;position:absolute;">slider html</a>
<!-- Bullet Navigator -->
<div data-u="navigator" class="jssorb132" style="position:absolute;bottom:24px;right:16px;" data-autocenter="1" data-scale="0.5" data-scale-bottom="0.75">
<div data-u="prototype" class="i" style="width:12px;height:12px;">
<svg viewbox="0 0 16000 16000" style="position:absolute;top:0;left:0;width:100%;height:100%;">
<circle class="b" cx="8000" cy="8000" r="5800"></circle>
</svg>
</div>
</div>
<!-- Arrow Navigator -->
<div data-u="arrowleft" class="jssora051" style="width:55px;height:55px;top:0px;left:25px;" data-autocenter="2" data-scale="0.75" data-scale-left="0.75">
<svg viewbox="0 0 16000 16000" style="position:absolute;top:0;left:0;width:100%;height:100%;">
<polyline class="a" points="11040,1920 4960,8000 11040,14080 "></polyline>
</svg>
</div>
<div data-u="arrowright" class="jssora051" style="width:55px;height:55px;top:0px;right:25px;" data-autocenter="2" data-scale="0.75" data-scale-right="0.75">
<svg viewbox="0 0 16000 16000" style="position:absolute;top:0;left:0;width:100%;height:100%;">
<polyline class="a" points="4960,1920 11040,8000 4960,14080 "></polyline>
</svg>
</div>
</div>
<script type="text/javascript">jssor_1_slider_init();
</script>
<!-- #endregion Jssor Slider End -->
</br>
<!-- NEWS EVENTS -->
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
</head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
.container {
font-family: 'Poppins', sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
/* width: 100%; */
/* height: 100vh; */
/* display: flex; */
/* align-items: center; */
/* justify-content: center; */
/* background-color: #bacad9; */
}
card {
/* width: 360px; */
/* height: 262px; */
/* background-color: #fff; */
/* display: flex; */
/* flex-direction: column; */
/* border-radius: 10px; */
/* padding-top: 25px; */
/* cursor: pointer; */
/* justify-content: space-between; */
/* padding-bottom: 15px; */
}
.card-header {
display: flex;
flex-direction: column;
align-items: center;
flex-wrap: wrap;
}
.avatar {
width: 100px;
height: 100px;
position: relative;
}
.user-online-indicator {
width: 15px;
height: 15px;
background-color: #53f45a;
position: absolute;
bottom: 10px;
right: 8px;
border-radius: 50%;
z-index: 4;
}
.avatar img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
}
.profile-name h1 {
font-size: 28px;
font-weight: 500;
text-align: center;
}
.profile-role {
color: #6d6d6d;
}
.social-buttons {
width: auto;
display: flex;
margin: 14px;
align-items: center;
justify-content: center;
}
.social-buttons button {
width: auto;
height: auto;
border: 1px solid transparent;
border-radius: 50%;
font-size: 23px;
margin: 0 20px;
}
</style>
<!--body>
<div class="container">
<div class="card">
<div class="card-header">
<div class="avatar">
<div class="user-online-indicator"></div>
<img
src="https://www.kasuncfernando.tk/images/avatar.jpg"
alt="user-image"
/>
</div>
<div class="profile-name"><h1>Kasun</h1></div>
<div class="profile-role">Frontend developer</div>
</div>
<div class="card-footer">
<div class="social-buttons">
<button>
<i class="fab fa-facebook"></i>
</button>
<button>
<i class="fab fa-twitter"></i>
</button>
</div>
</div>
</div>
</div>
</body-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.1.1/gsap.min.js"></script>
<script>
let tl = gsap.timeline();
console.log("New");
tl.from(".card", {
stagger: 0.2,
opacity: 0,
x: -20,
});
tl.from(".avatar img", {
stagger: 0.2,
opacity: 0,
y: 20,
});
tl.from(".user-online-indicator",{
stagger: 0.2,
opacity: 0,
y: 20,
})
tl.from(".profile-name",{
stagger: 0.2,
opacity: 0,
y: 20,
})
tl.from(".profile-role",{
stagger: 0.2,
opacity: 0,
y: 20,
})
tl.from(".social-buttons",{
stagger: 0.2,
opacity: 0,
})
</script>
</div>
</div>
</br>
</br>
<style>
.news-grid {
position: relative;
background: #fff;
border-radius: 5px;
overflow: hidden;
box-shadow: 0px 10px 30px 0px rgba(50, 50, 50, 0.16);
margin: 10px 0px 10px 0px;
}
.news-grid-image {
width: 100%;
height: 280px;
overflow: hidden;
}
.news-grid-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: .5s;
}
.news-grid-box {
display: block;
position: absolute;
text-align: center;
background: #0a0b3b;
left: -80px;
top: 15px;
padding: 10px;
transition: .5s;
}
.news-grid-box h1 {
color: #fff;
font-size: 30px;
font-weight: 400;
letter-spacing: 2px;
padding-bottom: 5px;
border-bottom: 1px solid rgba(255, 255, 255, .3);
margin-bottom: 5px;
}
.news-grid-box p {
color: #fff;
font-size: 14px;
font-weight: 400;
margin-bottom: 0px;
}
.news-grid-txt {
padding: 25px;
}
.news-grid-txt span {
color: #0a0b3b;
font-size: 13px;
font-weight: 500;
letter-spacing: 4px;
text-transform: uppercase;
}
.news-grid-txt h2 {
color: #111;
font-size: 20px;
font-weight: 500;
letter-spacing: 1px;
margin: 10px 0px 5px 0px;
}
.news-grid-txt ul {
padding: 0;
margin: 0;
}
.news-grid-txt ul li {
list-style: none;
display: inline-block;
color: #999;
font-size: 14px;
font-weight: 300;
margin: 8px 10px 8px 0px;
letter-spacing: 1px;
}
.news-grid-txt ul li i {
color: #0a0b3b;
font-size: 14px;
font-weight: 500;
margin-right: 5px;
}
.news-grid-txt p {
color: #222;
font-size: 14px;
font-weight: 300;
line-height: 170%;
letter-spacing: 1.5px;
border-bottom: 1px solid #ececec;
padding-bottom: 15px;
margin-bottom: 25px;
}
.news-grid-txt a {
color: #fff;
background: #0a0b3b;
padding: 8px 20px;
border-radius: 50px;
font-size: 14px;
font-weight: 300;
line-height: 30px;
letter-spacing: 1px;
text-decoration-line: none;
transition: .5s;
}
/*Hover-Section*/
.news-grid:hover .news-grid-box {
left: 15px;
transition: .5s;
}
.news-grid:hover .news-grid-image img {
filter: grayscale(1);
transform: scale(1.1);
transition: .5s;
}
.news-grid:hover .news-grid-txt a {
text-decoration-line: none;
color: #fff;
letter-spacing: 2px;
transition: .5s;
}
</style>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" crossorigin="anonymous">
<div class="news-wrap">
<div class="container">
<div class="row">
<div class="col-md-4 col-lg-4 m-15px-tb">
<div class="news-grid">
<div class="news-grid-image"><img src="News and Events/Main-Thumbsmod.jpg" alt="">
<div class="news-grid-box">
<h1>11</h1>
<p>May</p>
</div></div>
<div class="news-grid-txt">
<span>EVENTS</span>
<h2>The Kingdom by the sea turns 116th years</h2>
<ul>
<li><i class="fa fa-calendar" aria-hidden="true"></i> May 11, 2021</li>
<li><i class="fa fa-user" aria-hidden="true"></i> Admin</li>
</ul>
<p>Today marks 116 years since De La Salle College, Colombo, was founded on February 1, 1095.</p>
<a href="https://www.facebook.com/DeLaSalleCollegeColombo/">Read More...</a>
</div>
</div>
</div>
<div class="col-md-4 col-lg-4 m-15px-tb">
<div class="news-grid">
<div class="news-grid-image"><img src="img/dlsd.jpg" alt="">
<div class="news-grid-box">
<h1>11</h1>
<p>Dec</p>
</div></div>
<div class="news-grid-txt">
<span>NEWS</span>
<h2>Our New College Website Has Been Launched</h2>
<ul>
<li><i class="fa fa-calendar" aria-hidden="true"></i> Dec 11, 2021</li>
<li><i class="fa fa-user" aria-hidden="true"></i> Admin</li>
</ul>
<p>we are so excited to announce The launch of our redesigned website and launch announcement on December 11th, 2021, after nearly two months of the efforts and dedication of our college student Mast Kasun Chanuka.</p>
<a href="news/our-new-college-website-has-been-launched.php.html">Read More...</a>
</div>
</div>
</div>
<div class="col-md-4 col-lg-4 m-15px-tb">
<div class="news-grid">
<div class="news-grid-image"><img src="img/dlsobucrest.jpg" alt="">
<div class="news-grid-box">
<h1>24</h1>
<p>Sep</p>
</div></div>
<div class="news-grid-txt">
<span>ALUMNI</span>
<h2>Heading Will Be Here</h2>
<ul>
<li><i class="fa fa-calendar" aria-hidden="true"></i> Sep 24, 2020</li>
<li><i class="fa fa-user" aria-hidden="true"></i> Admin</li>
</ul>
<p>Lorem, ipsum dolor sit amet consectetur, adipisicing elit. Consequuntur aspernatur reprehenderit velit est voluptatum, voluptas amet quasi dicta consectetur.</p>
<a href="Old-Boys-Union.html">Read More...</a>
</div>
</div>
</div>
</div>
</div>
</div></div>
</body>
</section>
<!--SECTION END-->
<style>
.sec5 video {width: 98.95vw;}
.desktopVideo {display: block;}
.mobileVideo {display: none;}
.desktopVideo {display: none;}
.mobileVideo {display: block;}
</style>
<!--section class="sec5">
<video autoplay muted playsinline autobuffer loop class="desktopVideo" width="100%" height="400">
<source src="vid/DLS-INTRO-HD.mp4" type="video/mp4">
</video-->
<video muted playsinline autobuffer loop controls class="mobileVideo" width="100%" height="600">
<source src="vid/wave flag animation1_1.mp4" type="video/mp4">
</video>
</section>
<!-- MEDIA -->
<section>
<style>
/*
Reference: http://avexdesigns.com/responsive-youtube-embed/
*/
.vid {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px; height: 0; overflow: hidden;
}
.vid iframe,
.vid object,
.vid embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
setTimeout(function(){
$('.loader_bg').fadeToggle();
}, 1500);
</script>
<!------ Include the above in your HEAD tag ---------->
<!-- Reference: http://avexdesigns.com/responsive-youtube-embed/ -->
<div class="container">
<div class="row">
<h3>Reference</h3>
<p>
<strong><mark>Update!</mark> Wikipedia</strong>
</p>
<p>
<a href="www.lasallions.lk" target="_blank">Old LaSallians Union</a> |
<a href="https://www.facebook.com/LaSallianFederation" target="_blank">La Sallian Federation of Sri Lanka</a> |
<a href="http://www.umael.com" target="_blank">World Union of Lasallian Former Students</a> |
<a href="https://lasallians.lk/" target="_blank">La Salle Colombo</a> |
<a href="http://www.archdioceseofcolombo.com" target="_blank">Archdiocese of Colombo</a>
<!-- [http://www.lasallians.lk/ Old LaSallians Union]
* [https://www.facebook.com/LaSallianFederation/ La Sallian Federation of Sri Lanka]
* [http://www.umael.com/ World Union of Lasallian Former Students]
* [http://www.lasalle.lk/ La Salle Colombo]
* [http://www.archdioceseofcolombo.com/ Archdiocese of Colombo] -->
</p>
<hr>
</div><!--.row -->
</div><!--./container -->
<!--div class="container">
<div class="row">
<div class="col-md-4">
<h4>About De La Salle</h4>
<img src="img/dlsobucrest.jpg" class="img-responsive center-block" alt="Crest">
<p>
<small>Image: <a href="https://www.kasuncfernando.tk" target="_blank">By Kasun</a><br>
<p>
De La Salle College, Colombo is the only school in Sri Lanka dedicated to the Patron Saint of Christian Teachers St. John Baptist de la Salle, founder of the congregation of De La Salle Brothers of the Christian Schools in Latin: "Fratres Scholarum Christianarum".
</p>
<a href="/" target="_blank">All right Reserved</a></small>
</p>
</div><!--.col -->
</br>
<!--div class="col-md-8">
<div class="vid">