-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
982 lines (959 loc) · 39.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description"
content="To cater for the religious, cultural and social needs of Muslims in the county of Kerry.">
<meta name="keywords"
content="masjid, mosque, religion, islam, allah, god, faith, kicc">
<meta name="author" content="Nazmul Alam">
<meta name="google-site-verification"
content="gWYDAt0Oeo_Lpl4fvoNiP1xGihq4Ygsy5BAjGYHg4gU" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<title>Tralee Mosque: Kerry Islamic Cultural Centre</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet"
href="//stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet"
href="//cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.10.0/baguetteBox.min.css" />
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/animations.css">
<link rel="stylesheet"
href="//cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.10.0/baguetteBox.min.css" />
<link rel="stylesheet" href="assets/css/main.css">
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="//code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous">
</script>
<script
src="//cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous">
</script>
<script src="//stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous">
</script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/js-cookie/3.0.1/js.cookie.min.js"
integrity="sha512-wT7uPE7tOP6w4o28u1DN775jYjHQApdBnib5Pho4RB0Pgd9y7eSkAV1BTqQydupYDB9GBhTcQQzyNMPMV3cAew=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script defer src="https://www.gofundme.com/static/js/embed.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.10.0/baguetteBox.min.js"></script>
<!-- Google tag (gtag.js) -->
<script async
src="https://www.googletagmanager.com/gtag/js?id=G-3H9CDDS71D"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-3H9CDDS71D');
</script>
<script defer type="text/javascript" src="assets/js/scripts-1736112960242.js"></script>
</head>
<body>
<!-- START OF NAV -->
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark nav-wide sticky-top">
<div class="container">
<!-- Nab brand -->
<a class="navbar-brand d-none d-lg-block" href="/">
<img src="assets/images/logo.png" width="20%" height="20%"
class="d-inline-block align-center"
alt="Kerry Islamic Cultural Centre">
Tralee Masjid
</a>
<a class="navbar-brand d-block d-lg-none" href="/">
Tralee Masjid
</a>
<button class="navbar-toggler collapsed border-0" type="button"
data-toggle="collapse" data-target="#navbarResponsive"
aria-controls="navbarResponsive" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
<div class="close-icon py-2"><i class="fas fa-times fa-lg"></i></div>
</button>
<!-- End -->
<!-- Nav items -->
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="/">Home <span
class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="activities.html">Programmes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="madrasa.html">Madrasa</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">New Masjid</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link btn btn-success btn-lg mr-sm-0 mr-md-2 mr-lg-2 active"
role="button" target="_blank"
href="https://gofund.me/f75f7c17">Donate</a>
</li>
<li class="nav-item dropdown active">
<a class="nav-link dropdown-toggle btn btn-danger btn-lg active"
href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Salah Times
</a>
<div class="dropdown-menu active" aria-labelledby="navbarDropdown">
<div class="col-sm-12 center-block text-center">
<p class="h6"><span id="nav-hijri"></span></p>
</div>
<table class="table table-sm table-striped table-bordered">
<thead class="thead-dark">
<tr>
<th scope="col"></th>
<th scope="col">Adhan</th>
<th scope="col">Iqamah</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Fajr</th>
<td id="nav-fajr-begins">3.14 am</td>
<td id="nav-fajr-jamaat">5.14 am</td>
</tr>
<tr>
<th scope="row">Zohr</th>
<td id="nav-zohr-begins">3.14 am</td>
<td id="nav-zohr-jamaat">5.14 am</td>
</tr>
<tr>
<th scope="row">Asar</th>
<td id="nav-asar-begins">3.14 am</td>
<td id="nav-asar-jamaat">5.14 am</td>
</tr>
<tr>
<th scope="row">Magrib</th>
<td id="nav-magrib-begins">3.14 am</td>
<td id="nav-magrib-jamaat">5.14 am</td>
</tr>
<tr>
<th scope="row">Isha</th>
<td id="nav-isha-begins">3.14 am</td>
<td id="nav-isha-jamaat">5.14 am</td>
</tr>
</tbody>
</table>
<div class="col-sm-12 center-block text-center">
<p class="text-muted">Sunrise: <span id="nav-sunrise"></span>
</p>
<a class="btn btn-danger" id="salah-times" role="button"
href="assets/pdf/JAN2020.pdf" target="_blank"><span
id="nav-cur-month"></span> Timetable</a>
</div>
</div>
</li>
</ul>
</div>
<!-- End -->
</div>
</nav>
<!-- END OF NAV -->
<!-- BANNER START -->
<section class="bg-cover-2 text-white d-none d-md-block">
<div class="container text-center">
<div class="col-md-6 gfm-embed"
data-url="https://www.gofundme.com/f/ub7t7-kerry-islamic-cultural-centre-requires-donation/widget/large/">
</div>
</div>
</section>
<!-- BANNER END -->
<!-- GOFUNDME MOBILE BANNER START -->
<section>
<div class="gfm-embed col-md-5 d-block d-md-none"
data-url="https://www.gofundme.com/f/ub7t7-kerry-islamic-cultural-centre-requires-donation/widget/large/">
</div>
</section>
<!-- GOFUNDME MOBILE BANNER END -->
<!-- MODAL START -->
<div id="myModal" class="modal fade center" tabindex="-1">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Muslim Database</h5>
<button type="button" class="close"
data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<div class="d-flex justify-content-center mb-2">
<img src="/assets/images/newsletter.png">
</div>
<p>We are building out a Muslim Database within the Kerry region.</p>
<p>The database will help us provide timely updates of salah
timetable, madrasa news and masjid announcements to the community.
</p>
<button type="submit" class="btn btn-warning btn-lg btn-block"
onclick="window.open('https://forms.office.com/Pages/ResponsePage.aspx?id=DQSIkWdsW0yxEjajBLZtrQAAAAAAAAAAAAZ__rE22wdUNjhCNTdMR08yME1GUzM5WUtXMU5JRFhJVC4u','_blank')">Register
Now</button>
</br>
<div class="d-flex justify-content-center">
<p id="sub-btn-registered" type="submit"
class="btn btn-outline-dark btn-sm mr-2">Already registered</p>
<p id="sub-btn-tomorrow" type="submit"
class="btn btn-outline-dark btn-sm">Remind me tomorrow</p>
</div>
</div>
</div>
</div>
</div>
<!-- MODAL END -->
<!-- ANNOUNCEMENT START -->
<div
class="alert alert-success alert-dismissible fade show text-center d-none"
role="alert" id="announcement-bar">
<div class="container">
<span id="announcement"></span>
<button type="button" class="close" data-dismiss="alert"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
<!-- ANNOUNCEMENT END -->
<!-- NEWS AND EVENTS START -->
<section class="container pt-4 mb-4 bg-white rounded shadow">
<ul
class="nav nav-tabs nav-pills flex-column flex-sm-row text-center with-arrow"
id="nav-tab" role="tablist">
<li class="nav-item flex-sm-fill">
<a id="nav-events-tab" data-toggle="tab" href="#nav-events" role="tab"
aria-controls="events" aria-selected="true"
class="nav-link text-uppercase font-weight-bold mr-sm-3 rounded-0 border active">Weekly
Talks</a>
</li>
<li class="nav-item flex-sm-fill">
<a id="nav-news-tab" data-toggle="tab" href="#nav-news" role="tab"
aria-controls="news" aria-selected="false"
class="nav-link text-uppercase font-weight-bold mr-sm-3 rounded-0 border">Masjid
Updates</a>
</li>
</ul>
<div class="tab-content" id="nav-tabContent">
<!-- LIVE STREAMING EVENTS START -->
<div class="tab-pane fade px-1 pt-4 show active" id="nav-events"
role="tabpanel" aria-labelledby="nav-events">
<div class="row">
<!-- EVENTS START -->
<div class="col-md-12 col-lg-6 mb-3">
<div class="card h-100">
<div class="card-body">
<div class="d-flex justify-content-between mb-3">
<p class="h4 card-title">Next Up…</p>
<p class="h6"><a
href="https://mixlr.com/tralee-masjid/events/"
target="_blank" class="text-primary">more</a></p>
</div>
<div class="border p-3 mb-0">
<div class="row">
<div class="col-sm-4 border-right-lg border-right-md-0">
<div
class="d-flex justify-content-center align-items-center">
<p class="h1 mb-0 mr-2 text-primary font-weight-normal">
<span class="badge badge-success"
id="event-date">01</span>
</p>
<div>
<p class="font-weight-bold mb-0 text-dark"><span
class="text-uppercase" id="event-month">Jan</span>
</p>
<p class="mb-0"><span id="event-year">2020</span></p>
</div>
</div>
</div>
<div class="col-sm-8 pl-3">
<p class="text-dark font-weight-bold mb-0"><span
id="event-name">Loading...</span></p>
<p class="mb-0">
<i class="far fa-calendar-alt"></i> <span
id="event-day">Fri</span>
<i class="far fa-clock"></i> <span
id="starts-at">00:00</span>
<!-- <span class="font-weight-bold">— </span><span
id="ends-at">00:00</span> -->
<p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- EVENTS END -->
<!-- MIXLR PLAY START -->
<div class="col-md-12 col-lg-6 mb-3">
<div class="card h-100">
<div class="card-body">
<div class="d-flex justify-content-between mb-0">
<p class="card-title"><i
class="h4 fas fa-broadcast-tower"></i> <span
class="h6" id="live-now"></span>
</p>
<p class="h6"><a
href="https://mixlr.com/tralee-masjid/showreel/"
target="_blank" class="text-primary">previous
talks</a></p>
</div>
<div class="p-md-2 mt-md-4 p-lg-0 mt-lg-0">
<div class="row">
<iframe
src="https://mixlr.com/tralee-masjid/embed?autoplay=true&color=#0D5E10"
width="100%" height="150px" scrolling="no"
frameborder="no" marginheight="0"
marginwidth="0"></iframe>
</div>
</div>
</div>
</div>
<!-- MIXLR PLAY END -->
</div>
<!-- MIXLR PLAY END -->
</div>
</div>
<!-- LIVE STREAMING EVENTS END -->
<!-- NEWS TAB START -->
<div class="tab-pane fade px-1 pt-4 show" id="nav-news" role="tabpanel"
aria-labelledby="nav-news-tab">
<div class="row">
<div class="col-md-12 pl-4 pb-4">
<div class="row pb-4">
<div class="col-md-2"></div>
<div class="col-md-8">
<ul class="list-group">
<li class="list-group-item list-group-item-danger h4">Jumu'ah
Schedule</li>
<li
class="list-group-item d-flex justify-content-between align-items-center h5">
Speech <span
class="badge badge-primary badge-pill badge-danger"
id="speech-time"></span>
</li>
<li
class="list-group-item d-flex justify-content-between align-items-center h5">
Khutbah 1 <span
class="badge badge-primary badge-pill badge-danger"
id="khutbah-1"></span>
</li>
<li
class="list-group-item d-flex justify-content-between align-items-center h5">
Khutbah 2 <span
class="badge badge-primary badge-pill badge-danger"
id="khutbah-2"></span>
</li>
<!-- <li
class="list-group-item d-flex justify-content-between align-items-center h5">
Second Prayer <span
class="badge badge-primary badge-pill badge-danger">2:30
pm</span>
</li> -->
</ul>
</div>
<div class="col-md-8">
</div>
</div>
<p class="blockquote-footer">
Tralee Masjid Management Committee
</p>
</div>
</div>
</div>
<!-- NEWS TAB END -->
</section>
<!-- NEWS AND EVENTS END -->
<!-- WELCOME START -->
<section class="cp-welcome">
<div class="container rounded shadow">
<div class="row">
<div class="col-md-5 d-none d-md-block">
<img src="assets/images/welcome-pic.png"
class="img-fluid mb-4 mb-lg-0" alt="Islam">
</div>
<div class="col-md-7">
<div class="cp-welcome-content">
<h2>About KICC</h2>
<p>Welcome to the official website of Kerry Islamic Cultural Centre,
Tralee. </p>
<p>Our objective is to promote religion in accordance with the
tenets and doctrines of the Islamic faith
while adhering to Islamic values and we are committed to the
general welfare of all our members so that
they may contribute to the well being of the community at large.
</p>
<p>We promote education and teachings of the Islamic faith for the
benefit of the Muslim community in
Tralee, Co Kerry.</p>
<a href="about.html#intro" class="btn btn-success">Read More</a>
</div>
</div>
</div>
</div>
</section>
<!-- WELCOME END -->
<!-- SALAH TIMES START -->
<section class="clearfix d-none d-sm-block">
<div class="salah-times">
<div class="container">
<div class="row">
<div class="section-title">
<img src="assets/images/bsml-txt.png" alt="bsml-txt.png"
style="transition-delay: 0ms;">
<h2>Adhan Times</h2>
</div>
</div>
<div class="row justify-content-sm-center">
<div class="col-md-4 col-sm-4 col-lg">
<div class="features-box pt-5">
<div class="text-box pt-2">
<h2 class="pt-5">Fajr</h2>
<p class="badge badge-info" id="fajr">3:40am</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-4 col-lg">
<div class="features-box pt-5">
<div class="text-box pt-2">
<h2 class="pt-5">Zohr</h2>
<p class="badge badge-info" id="dhuhr">3:40am</p><br>
</div>
</div>
</div>
<div class="col-md-4 col-sm-4 col-lg">
<div class="features-box pt-5">
<div class="text-box pt-2">
<h2 class="pt-5">Asar</h2>
<p class="badge badge-info" id="asr">3:40am</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-4 col-lg">
<div class="features-box pt-5">
<div class="text-box pt-2">
<h2 class="pt-5">Magrib</h2>
<p class="badge badge-info" id="maghrib">3:40am</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-4 col-lg">
<div class="features-box pt-5">
<div class="text-box pt-2">
<h2 class="pt-5">Isha</h2>
<p class="badge badge-info" id="isha">3:40am</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 center-block text-center">
<p class="h4 p-2">Today's Sunrise is at <span id="sunrise"></span>
</p>
</div>
</div>
<div class="row">
<div class="col-sm-12 center-block text-center">
<a href="#" target="_blank" class="btn btn-outline-light"
id="salah-times-body" role="button">Download <span
id="cur-month"></span> Timetable</a>
</div>
</div>
</div>
</div>
</section>
<!-- SALAH TIMES END -->
<!-- MASJID NOTICES START -->
<section class="blog-home2 grid-gallery py-5" id="notice-board">
<div class="container">
<div class="row justify-content-center mb-3">
<div class="col-md-8 text-center">
<img src="assets/images/bsml-txt-black.png" alt="Bismillah"
style="transition-delay: 0ms; width: 210px; padding-top: 20px;">
<h2 class="my-3 text-break">Masjid Notices</h2>
</div>
</div>
<div class="row" id="noticeContainer">
<!-- <div class="col-md-6 col-lg-4 item">
<a class="lightbox" href="assets/images/posters/ramadan2024.jpeg">
<img class="img-fluid image scale-on-hover"
src="assets/images/posters/ramadan2024.jpeg">
</a>
</div> -->
</div>
</div>
</section>
<!-- MASJID NOTICES END -->
<!-- MASJID SERVICES START -->
<section class="pricing py-5">
<div class="container pb-5">
<div class="blog-home2 row justify-content-center pb-4">
<!-- Column -->
<div class="col-md-8 text-center">
<img src="assets/images/bsml-txt.png" alt="Bismillah"
style="transition-delay: 0ms; width: 210px; padding-top: 20px;">
<h2 class="my-3 text-break text-white">Masjid Services</h2>
</div>
<!-- Column -->
</div>
<div class="row">
<!-- Free Tier -->
<div class="col-lg-4">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">
Religious</h5>
<h6 class="card-price text-center"><i
class="fas fa-star-and-crescent fa-2x"></i></span></h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fas fa-check"></i></span>Five
Daily Prayers</li>
<li><span class="fa-li"><i
class="fas fa-check"></i></span><strong>Friday's Jumu'ah
Prayer</strong>
</li>
<li><span class="fa-li"><i
class="fas fa-check"></i></span>Congregational Taraweeh
Prayer</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>Eid
Prayers
</li>
<li><span class="fa-li"><i
class="fas fa-check"></i></span>Marriage and Funeral
Services</li>
</ul>
</div>
</div>
</div>
<!-- Plus Tier -->
<div class="col-lg-4">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">
Educational</h5>
<h6 class="card-price text-center"><i
class="fas fa-book fa-2x"></i></span></h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i
class="fas fa-check"></i></span><strong>Children's
Madrasa</strong></li>
<li><span class="fa-li"><i
class="fas fa-check"></i></span>Women's Qur'an Class</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>Men's
Qur'an Class</li>
<li><span class="fa-li"><i
class="fas fa-check"></i></span>Tafseer of the Qur'an</li>
<li><span class="fa-li"><i
class="fas fa-check"></i></span>Islamic Lectures</li>
</ul>
</div>
</div>
</div>
<!-- Pro Tier -->
<div class="col-lg-4">
<div class="card">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">
Social</h5>
<h6 class="card-price text-center"><i
class="fas fa-users fa-2x"></i></h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fas fa-check"></i></span>Eid
Celebration Gatherings</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>Daily
Iftar during Ramadan</li>
<li><span class="fa-li"><i
class="fas fa-check"></i></span>1-to-1 Counselling</li>
<li><span class="fa-li"><i
class="fas fa-check"></i></span>Children's Day Out</li>
<li><span class="fa-li"><i
class="fas fa-check"></i></span><strong>Know thy
Neighbours
Programme</strong></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- MASJID SERVICES END -->
<!-- RANDOM HADITH START -->
<blockquote class="quote-card blue-card">
<div class="container">
<span id="hadith-body">
<p>Abu Hurairah (May Allah be pleased with him) reported: The Messenger
of Allah (ﷺ) said, "Shall I not tell you something by which Allah
effaces the sins and elevates the ranks (in Jannah)." The Companions
said: "Yes (please tell us), O Messenger of Allah." He said,
"Performing the Wudu' properly in spite of difficult circumstances,
walking with more paces to the mosque, and waiting for the next Salat
(prayer) after a observing Salat; and that is Ar-Ribat, and that is
Ar-Ribat."<br /><br /><b>[Muslim]</b>.<br /><br /></p>
</span>
<a id="hadith-link" href="https://sunnah.com/riyadussalihin:1059"
target="_blank"><cite> <span id="hadith-cite">Riyad as-Salihin
189:1059</span></cite></a>
</div>
</blockquote>
<!-- RANDOM HADITH END -->
<!-- PILLARS OF FAITH START -->
<section class="iq-features d-none d-md-block py-5">
<div class="container">
<div class="row">
<div class="section-title">
<img src="assets/images/bsml-txt-black.png" alt="bsml-txt.png"
style="transition-delay: 0ms; width: 210px; padding-top: 20px;">
<h2>Pillars of Faith</h2>
</div>
</div>
<div class="row align-items-center">
<div class="col-lg-3 col-md-12"></div>
<div class="col-lg-6 col-md-12">
<div class="holderCircle">
<div class="round"></div>
<div class="dotCircle">
<span class="itemDot active itemDot1" data-tab="1">
<i class="fas fa-hand-point-up"></i>
<span class="forActive"></span>
</span>
<span class="itemDot itemDot2" data-tab="2">
<i class="fas fa-dove"></i>
<span class="forActive"></span>
</span>
<span class="itemDot itemDot3" data-tab="3">
<i class="fas fa-book-open"></i>
<span class="forActive"></span>
</span>
<span class="itemDot itemDot4" data-tab="4">
<i class="fas fa-hands-helping"></i>
<span class="forActive"></span>
</span>
<span class="itemDot itemDot5" data-tab="5">
<i class="fas fa-balance-scale"></i>
<span class="forActive"></span>
</span>
<span class="itemDot itemDot6" data-tab="6">
<i class="fas fa-heart"></i>
<span class="forActive"></span>
</span>
</div>
<div class="contentCircle">
<div class="CirItem title-box active CirItem1">
<h2 class="title"><span>Oneness of God</span></h2>
<p>We believe that God exists and that He is the Master and Lord
of the universe and the only One
deserving of worship, devotion and ultimate obedience. “There
is no true God worthy of worship but God
and Muhammad is the last and final Messenger of God.”
</p>
<i class="fas fa-hand-point-up"></i>
</div>
<div class="CirItem title-box CirItem2">
<h2 class="title"><span>Angels</span></h2>
<p>We believe that angels exist, believe in the names we are
informed of and of their descriptions in
authentic reports. They are created by God and have no share
in divinity. Their purpose is to serve
God and to carry out His commands in the universe.</p>
<i class="fas fa-dove"></i>
</div>
<div class="CirItem title-box CirItem3">
<h2 class="title"><span>Revealed Books</span></h2>
<p>We believe that God sent revelations and communicated with
His chosen messengers. We believe in the
names of the original scriptures and believe in the truth
contained therein which is confirmed by the
Quran.</p>
<i class="fas fa-book-open"></i>
</div>
<div class="CirItem title-box CirItem4">
<h2 class="title"><span>Prophets</span></h2>
<p>We believe that God sent human Messengers to remind people to
worship God alone on His terms and to
obey His commandments and messengers. They promised reward for
those who comply and do good and warned
of a punishment for those who do evil. </p>
<i class="fas fa-hands-helping"></i>
</div>
<div class="CirItem title-box CirItem5">
<h2 class="title"><span>Day of Judgement</span></h2>
<p>We believe that we will be brought back to life after death
to be Judged by God. Paradise and Hell
are the eternal destination of people based on how they lived
their lives and the choices they made.
</p>
<i class="fas fa-balance-scale"></i>
</div>
<div class="CirItem title-box CirItem6">
<h2 class="title"><span>Divine Decree</span></h2>
<p>We believe that God knows everything that is to come and He
recorded everything in a preserved tablet
before the creation came into existence. </p>
<i class="fas fa-heart"></i>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-12"></div>
</div>
</div>
</section>
<!-- PILLARS OF FAITH END -->
<!-- PILLARS OF ISLAM START -->
<section class="clearfix d-none d-sm-block">
<div class="pillars-islam">
<div class="container">
<div class="row">
<div class="section-title">
<!-- <strong>Bismillah</strong> -->
<img src="assets/images/bsml-txt.png" alt="bsml-txt.png"
style="transition-delay: 0ms;">
<h2>Pillars Of Islam</h2>
</div>
</div>
<div class="row justify-content-sm-center">
<div class="col-md-4 col-sm-4 col-lg">
<div class="features-box">
<span>
<!-- <a class="inner" href="#"> -->
<!-- <img src="assets/images/features-icon-1.png" alt=""> -->
<i class="fas fa-hand-point-up fa-4x"></i>
<!-- </a> -->
</span>
<div class="text-box">
<h2>Shahadah</h2>
<p class="sub">Faith</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-4 col-lg">
<div class="features-box">
<span>
<!-- <a class="inner" href="#"> -->
<i class="fas fa-praying-hands fa-4x"></i>
<!-- <img src="assets/images/features-icon-55.png" alt=""> -->
<!-- </a> -->
</span>
<div class="text-box">
<h2>Salah</h2>
<p class="sub">Prayer</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-4 col-lg">
<div class="features-box">
<span>
<!-- <a class="inner" href="#"> -->
<!-- <img src="assets/images/features-icon-5.png" alt=""> -->
<i class="fas fa-quran fa-4x"></i>
<!-- </a> -->
</span>
<div class="text-box">
<h2>Sawm</h2>
<p class="sub">Fasting</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-4 col-lg">
<div class="features-box">
<span>
<!-- <a class="inner" href="#"> -->
<!-- <img src="assets/images/features-icon-4.png" alt=""> -->
<i class="fas fa-hand-holding-usd fa-4x"></i>
<!-- </a> -->
</span>
<div class="text-box">
<h2>Zakah</h2>
<p class="sub">Alms Giving</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-4 col-lg">
<div class="features-box">
<span>
<!-- <a class="inner" href="#"> -->
<!-- <img src="assets/images/features-icon-2.png" alt=""> -->
<i class="fas fa-kaaba fa-4x"></i>
<!-- </a> -->
</span>
<div class="text-box">
<h2>Hajj</h2>
<p class="sub">Pilgrimage</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- PILLARS OF ISLAM END -->
<!-- QUR'AN QUOTE START -->
<section class="clearfix">
<div class="parallax-section">
<div class="container">
<div class="right-box"> <img src="assets/images/parallax-text.png"
alt="Islam"> <strong class="title">Then which
of
the favours of your Lord will ye deny?</strong>
<a target="_blank" href="https://quran.com/55/13?translations=22">—
[Qur'an 55:13]</a>
</div>
</div>
</div>
</section>
<!-- QUR'AN QUOTE END -->
<!-- COOKIE POLICY START -->
<div id="cookie-bar"
class="alert alert-info alert-dismissible fade sticky-footer" role="alert">
<p class="text-center">The website uses cookies to ensure you get the best
experience on our website.
</p>
<button id="cookie-accept" type="button" class="close" data-dismiss="alert"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<!-- COOKIE POLICY END -->
<!-- FOOTER START -->
<footer class="page-footer font-small mdb-color pt-4 bg-secondary">
<!-- Footer Links -->
<div class="container text-center text-md-left">
<!-- Footer links -->
<div class="row text-center text-md-left mt-3 pb-3">
<!-- Grid column -->
<div class="col-md-3 col-lg-3 col-xl-3 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold">Kerry Islamic
Cultural Centre</h6>
<p>To cater for the religious, cultural and social needs of Muslims in
the county of Kerry.</p>
</div>
<!-- Grid column -->
<hr class="w-100 clearfix d-md-none">
<!-- Grid column -->
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold">Services</h6>
<p>
<a href="https://forms.office.com/Pages/ResponsePage.aspx?id=DQSIkWdsW0yxEjajBLZtrQAAAAAAAAAAAAZ__rE22wdUNjhCNTdMR08yME1GUzM5WUtXMU5JRFhJVC4u"
target="_blank">Register Now</a>
</p>
<p>
<a href="activities.html#women-class">Women's Class</a>
</p>
<p>
<a href="activities.html#adult-classes">Men's Class</a>
</p>
<p>
<a href="madrasa.html#madrasa-schedule">Children's Madrasa</a>
</p>
</div>
<!-- Grid column -->
<hr class="w-100 clearfix d-md-none">
<!-- Grid column -->
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold">Useful links</h6>
<p>
<a target="_blank" href="https://gofund.me/f75f7c17">Donate
Now</a>
</p>
<p>
<a href="about.html#our-team">Our Team</a>
</p>
<p>
<a href="https://mixlr.com/tralee-masjid/showreel/"
target="_blank">Previous Talks</a>
</p>
<p>
<a href="#" target="_blank" id="salah-times-footer"><span
id="footer-cur-month"></span> Timetable</a>
</p>
</div>
<!-- Grid column -->
<hr class="w-100 clearfix d-md-none">
<!-- Grid column -->
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold">Contact</h6>
<p>
<i class="fas fa-mosque fa-lg mr-2"></i> <a
href="//goo.gl/maps/itDbxNWHt4bcUb4A9" target="_blank">Tralee,
Kerry,
V92
CC79</a>
</p>
<p>
<i class="fas fa-at fa-lg mr-3"></i> <a
href="mailto:info@traleemasjidkicc.ie">info@traleemasjidkicc.ie</a>
</p>
<p>
<i class="fas fa-phone-alt fa-lg mr-3"></i> <a
href="tel:+353866038982">086 603 8982</a>
</p>
<p>
<i class="fab fa-whatsapp fa-lg mr-3"></i> <a
href="//wa.me/353862440556?text=As-salamu alaikum, Imam Mustafa.">086
244 0556</a>
</p>
</div>
<!-- Grid column -->
</div>
<!-- Footer links -->
<hr>
<!-- Grid row -->
<div class="row d-flex align-items-center">
<!-- Grid column -->
<div class="col-md-7 col-lg-8">
<!--Copyright-->
<p class="text-center text-md-left">© <span
id="footer-year">2019</span> KICC | CHY Number 14981 ~ Made with
<i class="fas fa-heart" style="color:red"></i>
& <i class="fas fa-mug-hot" style="color: brown"></i> by <a
href="//nalam.me" rel="external" target="_blank">
<strong> Nazmul Alam</strong>
</a>
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-5 col-lg-4 ml-lg-0">
<!-- Social buttons -->
<div class="text-center text-md-right">
<ul class="list-unstyled list-inline">
<li class="list-inline-item">
<a class="btn-floating btn-sm rgba-white-slight mx-1"
target="_blank" href="/~https://github.com/traleemasjidkicc">
<i class="fab fa-github"></i>
</a>
</li>
</ul>
</div>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
<!-- Footer Links -->
</footer>
<!-- FOOTER END -->
</body>
</html>