-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
1062 lines (966 loc) · 40.2 KB
/
Copy pathindex.html
File metadata and controls
1062 lines (966 loc) · 40.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>JULI-TOLA INTERNATIONAL SCHOOL</title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<!-- Favicons -->
<link href="assets/img/book.png" rel="icon" />
<link href="assets/img/book.png" rel="apple-touch-icon" />
<!-- Fonts -->
<link href="https://fonts.googleapis.com" rel="preconnect" />
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Satisfy:wght@400&display=swap"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="assets/vendor/bootstrap-icons/bootstrap-icons.css"
rel="stylesheet"
/>
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link
href="assets/vendor/glightbox/css/glightbox.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<!-- Main CSS File -->
<link href="assets/css/main.css" rel="stylesheet" />
<!--Email js -->
<script
type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@emailjs/browser@4/dist/email.min.js"
></script>
<script type="text/javascript">
(function () {
emailjs.init({
publicKey: "4P5NVR3Qv6TMlYk1a",
});
})();
</script>
</head>
<body class="index-page">
<header id="header" class="header fixed-top">
<div class="branding d-flex align-items-cente">
<div
class="container position-relative d-flex align-items-center justify-content-between"
>
<a href="index.html" class="logo d-flex align-items-center">
<!-- <img src="assets/img/logo.png" alt=""> -->
<h1 class="sitename" style="color: red">
<span style="color: green">Juli</span>tola
</h1>
</a>
<!-- The navigation menu starts here. This is the header section of the website. -->
<nav id="navmenu" class="navmenu">
<!-- The list of navigation links starts here. To add a new link to the menu,
insert a new <li> item following the same structure as the ones below. -->
<ul>
<!-- Home Link: This is the link that takes users to the hero section at the top of the page.
To change the text "Home," replace it inside the <a> tag. -->
<li><a href="#hero" class="active">Home</a></li>
<!-- About Link: This link directs users to the "About" section of the page.
To change the text "About," edit it here. -->
<li><a href="#about">About</a></li>
<!-- Academics Dropdown: This menu contains multiple links related to academics.
If you want to rename "Academics," replace the text inside the <span> tag below. -->
<li class="dropdown">
<a href="#academics">
<span>Academics</span>
<!-- This is the small arrow icon beside "Academics." No changes are needed unless styling adjustments are required. -->
<i class="bi bi-chevron-down toggle-dropdown"></i>
</a>
<!-- This is the dropdown menu under "Academics." To add a new option, insert a new <li> item here. -->
<ul>
<!-- Alumni Link: This link directs users to the "Discover" section on the Alumni page.
To change the text "Alumni," edit it inside the <a> tag. -->
<li><a href="vocational.html">Vocational</a></li>
<!-- Secondaryy Link: This takes users to the primary school application form.
To change the link name, replace "Secondary" with the desired text. -->
<li><a href="Secondary.html">Secondary</a></li>
<!-- Application Form Secondary Link: This directs users to the secondary school application form.
Edit "Application Form Secondary" to change the displayed text. -->
<li><a href="primary.html">Primary</a></li>
</ul>
</li>
<!-- Activities Link: Directs users to the "Activities" section.
To rename "Activities," replace the text inside the <a> tag. -->
<li><a href="#activities">Activities</a></li>
<!-- News Link: This takes users to the "News" section.
Change the text "News" by editing it here. -->
<li><a href="#news">News</a></li>
<!-- Gallery Link: Leads users to the "Gallery" section of the website.
Modify "Gallery" here if a different name is required. -->
<li><a href="#gallery">Gallery</a></li>
<!-- Discover Dropdown: Contains links to different sections. Rename "Discover" by editing the <span> tag below. -->
<li class="dropdown">
<a href="#">
<span>Discover</span>
<!-- The arrow beside "Discover." -->
<i class="bi bi-chevron-down toggle-dropdown"></i>
</a>
<!-- The dropdown links under "Discover." To add a new item, include a <li> tag here. -->
<ul>
<!-- Alumni Link: Directs to the Alumni "Discover" section. -->
<li><a href="Alumni.html#discover">Alumni</a></li>
<!-- Application Form Primary: Links to the primary application form. -->
<li><a href="ApplicationPri.html">Application Form Primary</a></li>
<!-- Application Form Secondary: Links to the secondary application form. -->
<li><a href="ApplicationSec.html">Application Form Secondary</a></li>
</ul>
</li>
<!-- Contact Link: Takes users to the "Contact" section.
Replace "Contact" with your preferred text. -->
<li><a href="#contact">Contact</a></li>
<!-- Login Link: Redirects users to the Login page.
Edit "Login" to rename the link text. -->
<li><a href="Login.html">Login</a></li>
</ul>
<!-- This is the toggle button for mobile navigation. It only appears on smaller screens.
No edits are necessary unless you want to customize the icon. -->
<i class="mobile-nav-toggle d-xl-none bi bi-list"></i>
</nav>
</div>
</div>
</header>
<main class="main">
<!-- Hero Section -->
<section id="hero" class="hero section dark-background">
<div
id="hero-carousel"
class="carousel slide carousel-fade"
data-bs-ride="carousel"
data-bs-interval="5000"
>
<div class="carousel-item active">
<img
src="https://img.freepik.com/free-photo/shallow-focus-shot-african-child-learning-school_181624-36498.jpg?t=st=1728928612~exp=1728932212~hmac=3526c3017541c36c871e0b592c9a83b0e197b40b0993f71d5d9e20ae7e17b2e8&w=826"
alt=""
/>
<div class="carousel-container">
<h2>A Brighter Future Begins Here</h2>
<p>
At Julitola International Schools, we believe that each child is
unique, and our goal is to create an environment that fosters
creativity, critical thinking, and personal growth. Our
dedicated faculty is committed to providing an engaging and
enriching learning experience, empowering our students to reach
their full potential both academically and spiritually.
</p>
<div>
<a
href="assets/form/Application Form Primary.pdf"
download="Application Form Primary"
class="btn-get-started"
>Application Form Primary</a
>
<a
href="assets/form/Application Form Secondary.pdf"
download="Application Form Secondary"
class="btn-get-started"
>Application Form Secondary</a
>
</div>
</div>
</div>
<!-- End Carousel Item -->
<div class="carousel-item">
<img
src="https://img.freepik.com/free-photo/empty-classroom-desk-with-books-pencils_9975-23901.jpg?t=st=1728928719~exp=1728932319~hmac=7cf06d97f3b123edd81c4a8209a16b48f5884fcbf4609b9428cdfbeb250b1baf&w=996"
alt=""
/>
<div class="carousel-container">
<h2>Inspiring Young Minds</h2>
<p>
As we embark on this educational journey together, we invite
parents, guardians, and the community to partner with us in
shaping the leaders of tomorrow. Through collaboration, support,
and shared values, we can ensure that our children grow into
confident, capable individuals who are ready to make a positive
impact in the world.
</p>
<div>
<a
href="assets/form/Application Form Primary.pdf"
download="Application Form Primary"
class="btn-get-started"
>Application Form Primary</a
>
<a
href="assets/form/Application Form Secondary.pdf"
download="Application Form Secondary"
class="btn-get-started"
>Application Form Secondary</a
>
</div>
</div>
</div>
<!-- End Carousel Item -->
<a
class="carousel-control-prev"
href="#hero-carousel"
role="button"
data-bs-slide="prev"
>
<span
class="carousel-control-prev-icon bi bi-chevron-left"
aria-hidden="true"
></span>
</a>
<a
class="carousel-control-next"
href="#hero-carousel"
role="button"
data-bs-slide="next"
>
<span
class="carousel-control-next-icon bi bi-chevron-right"
aria-hidden="true"
></span>
</a>
<ol class="carousel-indicators"></ol>
</div>
</section>
<!-- /Hero Section -->
<!-- About Section -->
<section id="about" class="about section light-background">
<div class="container">
<div class="row gy-4">
<div
class="col-lg-6 position-relative align-self-start"
data-aos="fade-up"
data-aos-delay="100"
>
<img
src="https://images.unsplash.com/photo-1529390079861-591de354faf5?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3Dg"
class="img-fluid"
alt=""
/>
</div>
<div
class="col-lg-6 content"
data-aos="fade-up"
data-aos-delay="200"
>
<h3>A Commitment to Excellence</h3>
<p>
Welcome to Julitola International Schools, where our vision is
rooted in our commitment to "build a total child with the fear
of God." As the founder, I would like to take this opportunity
to share my heartfelt message with you all. At Julitola
International Schools, we understand that education is more than
just academic excellence; it is about nurturing well-rounded
individuals who possess not only knowledge but also strong moral
values and a sense of responsibility towards themselves and the
community. Our vision emphasizes the importance of instilling a
deep respect and reverence for God, guiding our students to
develop integrity, compassion, and a strong ethical foundation
that will serve them throughout their lives.
<!-- <ul>
<li><i class="bi bi-check2-all"></i> <span>Ullamco laboris nisi ut aliquip ex ea commodo consequat.</span></li>
<li><i class="bi bi-check2-all"></i> <span>Duis aute irure dolor in reprehenderit in voluptate velit.</span></li>
<li><i class="bi bi-check2-all"></i> <span>Ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate trideta storacalaperda mastiro dolore eu fugiat nulla pariatur.</span></li>
</ul>-->
</p>
</div>
</div>
</div>
</section>
<!-- /About Section -->
<!-- Academics Section -->
<section id="academics" class="why-us section">
<!-- Section Header: This displays the title of the section -->
<div class="container section-title" data-aos="fade-up">
<!-- Main Heading -->
<h2>Academics</h2>
<div>
<!-- Subheading: "Our Curriculum Overview" can be changed to suit your needs -->
<span>Our</span>
<span class="description-title">Curriculum Overview</span>
</div>
</div>
<!-- End Section Header -->
<!-- Container for the Cards -->
<div class="container">
<div class="row gy-4"> <!-- All cards must go inside this "row". -->
<!-- CARD 1: Computer Science -->
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="100">
<div class="card-item">
<!-- CARD NUMBER: This indicates the position of the card -->
<span>01</span>
<!-- CARD TITLE: Change "Computer Science" to the subject name -->
<!-- NOTE: Do not touch the <a> tag unless you want to add or change the link -->
<h4><a href="#" class="stretched-link">Computer Science</a></h4>
<!-- CARD DESCRIPTION: Replace this paragraph with your description -->
<p>
Prepare for the future with our hands-on ICT learning! Our
experienced team is dedicated to equipping students with
skills to thrive in today’s tech-driven world.
</p>
</div>
</div>
<!-- END CARD 1 -->
<!-- CARD 2: Fine Arts -->
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="200">
<div class="card-item">
<!-- CARD NUMBER -->
<span>02</span>
<!-- CARD TITLE -->
<h4><a href="#" class="stretched-link">Fine Arts</a></h4>
<!-- CARD DESCRIPTION -->
<p>
Join us in this journey of self-discovery and artistic growth.
Unleash your creativity, learn from talented instructors, and
become part of a vibrant artistic community.
</p>
</div>
</div>
<!-- END CARD 2 -->
<!-- CARD 3: Science -->
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="300">
<div class="card-item">
<!-- CARD NUMBER -->
<span>03</span>
<!-- CARD TITLE -->
<h4><a href="#" class="stretched-link">Science</a></h4>
<!-- CARD DESCRIPTION -->
<p>
Embrace scientific inquiry and innovation at our school! With
exceptional faculty and cutting-edge labs, we inspire students
to explore, discover, and unlock their inventive potential,
guided by top mentors.
</p>
</div>
</div>
<!-- END CARD 3 -->
<!-- INSTRUCTIONS FOR ADDING A NEW CARD -->
<!--
HOW TO ADD A NEW CARD:
1. Copy one of the <div class="col-lg-4"...> blocks. Each block represents one card.
2. Paste the copied block below the last card (inside <div class="row gy-4">).
3. Update the following:
- CARD NUMBER: Change the <span> content to the next number (e.g., 04 for the fourth card).
- CARD TITLE: Replace the text inside <h4><a> with the subject name.
- CARD DESCRIPTION: Replace the <p> text with the description for the new subject.
- LINK: Update the href="#" inside the <a> tag to link to the desired page.
4. OPTIONAL: Update the 'data-aos-delay' attribute for animation timing. For example:
- First card: data-aos-delay="100"
- Second card: data-aos-delay="200"
- Third card: data-aos-delay="300"
- Fourth card: data-aos-delay="400"
5. Save the file and reload the page to see your new card.
IMPORTANT:
- DO NOT remove or change any of the <div> tags or their "class" attributes, as they control layout and animations.
- The "stretched-link" class ensures the whole card is clickable. Do not remove it.
-->
</div> <!-- End of Row -->
</div> <!-- End of Container -->
</section>
<!-- END Academics Section -->
<!-- Activities Section: This section highlights various co-curricular activities offered -->
<section id="activities" class="specials section">
<!-- SECTION TITLE: Displays the title and subtitle for the Activities section -->
<div class="container section-title" data-aos="fade-up">
<h2>Activities</h2>
<div>
<!--
Editable Text:
- "Co-curricular" is the main title displayed above the tabs. Replace it if needed.
- "Activities" is the subtitle shown as emphasis. Change it if necessary.
-->
<span>Co-curricular</span>
<span class="description-title">Activities</span>
</div>
</div>
<!-- END OF SECTION TITLE -->
<!-- BEGINNING OF CONTENT -->
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row">
<!-- LEFT-SIDE NAVIGATION: Tabs to navigate between different activities -->
<div class="col-lg-3">
<ul class="nav nav-tabs flex-column">
<!-- Tab 1: Athletics -->
<li class="nav-item">
<!--
To change the tab name:
- Replace the text "Athletics" with your desired tab name.
- Ensure the `href` (e.g., "#specials-tab-1") matches the ID of the corresponding tab content below.
-->
<a
class="nav-link active show"
data-bs-toggle="tab"
href="#specials-tab-1"
>Athletics</a
>
</li>
<!-- Tab 2: Arts -->
<li class="nav-item">
<!-- Replace "Arts" with the desired tab name. Update href to match the tab ID. -->
<a
class="nav-link"
data-bs-toggle="tab"
href="#specials-tab-2"
>Arts</a
>
</li>
<!-- Tab 3: Music -->
<li class="nav-item">
<!-- Replace "Music" with your desired tab name. Ensure href matches the corresponding tab ID. -->
<a
class="nav-link"
data-bs-toggle="tab"
href="#specials-tab-3"
>Music</a
>
</li>
</ul>
</div>
<!-- END LEFT-SIDE NAVIGATION -->
<!-- RIGHT-SIDE CONTENT: Displays details for each activity when a tab is clicked -->
<div class="col-lg-9 mt-4 mt-lg-0">
<div class="tab-content">
<!-- TAB 1 CONTENT: Athletics -->
<div class="tab-pane active show" id="specials-tab-1">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<!--
To change the title:
- Replace "Passion for Sports and Athletics" with the new title.
-->
<h3>Passion for Sports and Athletics</h3>
<!--
To edit the first italicized paragraph:
- Replace "Our students have the freedom to explore their passion..." with new content.
-->
<p class="fst-italic">
Our students have the freedom to explore their passion
for sports, choosing activities they love.
</p>
<!--
To edit the detailed paragraph:
- Replace the content inside this <p> tag with new text.
-->
<p>
We encourage active participation in various
competitions, from inter-school to national levels. This
fosters teamwork, discipline, and excellence as they
strive to reach new heights in their athletic pursuits.
</p>
</div>
<!--
IMAGE SECTION:
- To replace the image, change the "src" attribute to the new image file path.
- Ensure the new image file is uploaded to your assets/img folder or provide an external link.
-->
<div class="col-lg-4 text-center order-1 order-lg-2">
<img
src="assets/img/Athletics.webp"
alt="Athletics"
class="img-fluid"
/>
</div>
</div>
</div>
<!-- END TAB 1 CONTENT -->
<!-- TAB 2 CONTENT: Arts -->
<div class="tab-pane" id="specials-tab-2">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Celebrating the Arts and Creativity</h3>
<p class="fst-italic">
Our students are encouraged to explore their artistic
talents in areas like dance, drama, and painting.
</p>
<p>
Guided by a team of seasoned professionals, we provide
opportunities for creative expression through
exhibitions, concerts, and performances. These
experiences empower our students to embrace their unique
abilities and thrive in the world of performing arts and
music.
</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/art1.png" alt="Arts" class="img-fluid" />
</div>
</div>
</div>
<!-- END TAB 2 CONTENT -->
<!-- TAB 3 CONTENT: Music -->
<div class="tab-pane" id="specials-tab-3">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Embracing the World of Music</h3>
<p class="fst-italic">
Our students have the opportunity to explore and develop
their musical talents in an inspiring environment.
</p>
<p>
With expert guidance, we nurture their skills through
lessons, performances, and concerts, enabling them to
express themselves and build confidence. Our commitment
to music education empowers students to discover their
unique sound and thrive as young musicians.
</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img
src="assets/img/music.png"
alt="Music"
class="img-fluid"
/>
</div>
</div>
</div>
<!-- END TAB 3 CONTENT -->
<!-- GUIDE FOR ADDING A NEW TAB -->
<!--
To add a new activity tab (e.g., Drama):
1. Add a new <li> inside the <ul>:
Example:
<li class="nav-item">
<a class="nav-link" data-bs-toggle="tab" href="#specials-tab-4">Drama</a>
</li>
2. Add a new <div> inside the <div class="tab-content">:
Example:
<div class="tab-pane" id="specials-tab-4">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Drama and Theater</h3>
<p class="fst-italic">Your introduction goes here.</p>
<p>More details about the activity here.</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/drama.png" alt="Drama" class="img-fluid" />
</div>
</div>
</div>
3. Ensure the `href` in the <a> matches the ID in the <div> (e.g., "specials-tab-4").
-->
</div>
</div>
<!-- END RIGHT-SIDE CONTENT -->
</div>
</div>
<!-- END OF CONTENT -->
</section>
<!-- END Activities Section -->
<!-- News Section -->
<section id="news" class="events section">
<img
class="slider-bg"
src="https://img.freepik.com/free-photo/education-day-arrangement-table-with-copy-space_23-2148721266.jpg?t=st=1728929636~exp=1728933236~hmac=bdc0cb0c8e4803cbd7092f758b530a2a8f61f624cb375f64951db063cb561f3e&w=996"
alt=""
data-aos="fade-in"
/>
<div class="container">
<div
class="swiper init-swiper"
data-aos="fade-up"
data-aos-delay="100"
>
<script type="application/json" class="swiper-config">
{
"loop": true,
"speed": 600,
"autoplay": {
"delay": 5000
},
"slidesPerView": "auto",
"pagination": {
"el": ".swiper-pagination",
"type": "bullets",
"clickable": true
}
}
</script>
<div class="swiper-wrapper"></div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- /News Section -->
<!-- Gallery Section -->
<section id="gallery" class="gallery section">
<div class="container section-title" data-aos="fade-up">
<h2>Gallery</h2>
<div>
<span>Some photos from</span>
<span class="description-title">Our Activities</span>
</div>
</div>
<!-- End Section Title -->
<div class="container-fluid" data-aos="fade-up" data-aos-delay="100">
<div class="row g-0" id="gallery-preview"></div>
</div>
</section>
<!-- /Gallery Section -->
<!-- Teachers Section -->
<section id="teachers" class="chefs section">
<div class="container section-title" data-aos="fade-up">
<h2>Teachers</h2>
<div>
<span>Our Professional</span>
<span class="description-title">Teachers</span>
</div>
</div>
<div class="container">
<div id="teacherList" class="row gy-5">
<!-- Teachers will be dynamically loaded here -->
</div>
<!-- End Team Member -->
</div>
<style>
.member .pic img {
height: 400px;
object-fit: cover;
width: 100%;
}
</style>
</section>
<!-- /Chefs Section -->
<!-- Testimonials Section -->
<section id="testimonials" class="testimonials section dark-background">
<!-- Background image for the testimonials section -->
<img
src="https://img.freepik.com/free-vector/illustration-education-concept_53876-20536.jpg?t=st=1729159738~exp=1729163338~hmac=1a763fe6bc909eaf1fa9b89faefcd69fe0a6d19311ee99070dfa6360d5c7c29d&w=900"
class="testimonials-bg"
alt="Background illustration for testimonials section"
/>
<div class="container" data-aos="fade-up" data-aos-delay="100">
<!-- Swiper slider to display testimonials -->
<div class="swiper init-swiper">
<!-- Configuration for the swiper slider -->
<script type="application/json" class="swiper-config">
{
"loop": true,
"speed": 600,
"autoplay": {
"delay": 5000
},
"slidesPerView": "auto",
"pagination": {
"el": ".swiper-pagination",
"type": "bullets",
"clickable": true
}
}
</script>
<div class="swiper-wrapper">
<!-- Existing testimonial items are defined here. Follow the instructions below to add a new one. -->
<!-- To add a new testimonial, copy the structure of a single "swiper-slide" block below. -->
<div class="swiper-slide">
<div class="testimonial-item">
<!-- Step 1: Replace the "src" URL in this <img> tag with the image URL for the testimonial. -->
<img
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS0pJdIZkaBurjZXv3_ijH_A1M3booWAOg-JA&s"
class="testimonial-img"
alt="Chidinma Okafor"
/>
<!-- Step 2: Update the name of the person giving the testimonial inside the <h3> tag. -->
<h3>Chidinma Okafor</h3>
<!-- Step 3: Update the role or title of the person inside the <h4> tag (e.g., "Parent," "Teacher"). -->
<h4>Parent</h4>
<!-- Step 4: Update the number of stars to match the testimonial rating.
Each star is represented by an <i> tag. Keep or remove <i> tags as needed. -->
<div class="stars">
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
<!-- Step 5: Add the testimonial text inside the <span> tag below.
Make sure the text is enclosed by the quote icons. -->
<span>
My daughter loves going to school every day! The staff at
Julitola are kind, caring, and they make sure the children
are developing well, both socially and academically.
</span>
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
<!-- End Testimonial 1 -->
<!-- Testimonial 2 -->
<div class="swiper-slide">
<div class="testimonial-item">
<img
src="https://naijaplanet.com/assets/photos/profile/0/0/10/105294/b_pic_1.jpg"
class="testimonial-img"
alt="Kunle Adeyemi"
/>
<h3>Kunle Adeyemi</h3>
<h4>Parent</h4>
<div class="stars">
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
<span>
Julitola Creche and Primary School has exceeded my
expectations. The level of care and education is
top-notch, and the school environment is very welcoming.
</span>
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
<!-- End Testimonial 2 -->
<!-- Testimonial 3 -->
<div class="swiper-slide">
<div class="testimonial-item">
<img
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSpv6oxOwLHn2BvsIVjkgTTaXK9BbaoogeveA&s"
class="testimonial-img"
alt="Abiola Williams"
/>
<h3>Abiola Williams</h3>
<h4>Parent</h4>
<div class="stars">
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
<span>
I’ve seen tremendous growth in my son since he started at
Julitola. The teachers are highly qualified, and they
create a nurturing and stimulating environment for
learning. I’m so grateful for this school!
</span>
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
<!-- End Testimonial 3 -->
</div>
<!-- Pagination dots for the swiper slider -->
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- /Testimonials Section -->
<!-- Contact Section -->
<section id="contact" class="contact section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Contact</h2>
<div>
<span>Check Our</span>
<span class="description-title">Contact</span>
</div>
</div>
<!-- End Section Title -->
<div class="mb-5">
<iframe
style="width: 100%; height: 400px"
src="https://maps.google.com/maps?q=Julitola%20International%20Schools%20Lokoja%2C%20Kogi%20State&t=m&z=10&output=embed&iwloc=near"
frameborder="0"
allowfullscreen=""
></iframe>
</div>
<!-- End Google Maps -->
<div class="container" data-aos="fade">
<div class="row gy-5 gx-lg-5">
<div class="col-lg-4">
<div class="info">
<h3>Get in Touch</h3>
<p class="fst-italic">
We’re here to help students unlock the skills they need to
create positive change in themselves, others, and the
community.
</p>
<div class="info-item d-flex">
<i class="bi bi-geo-alt flex-shrink-0"></i>
<div>
<h4>Location:</h4>
<p>
TPS 62, Block 21 Plot 1 Crusher (Gada-Shagari), Along
Okene Road, Lokoja, Kogi State
</p>
</div>
</div>
<!-- End Info Item -->
<div class="info-item d-flex">
<i class="bi bi-envelope flex-shrink-0"></i>
<div>
<h4>Email:</h4>
<p>Info@julitolaschools.com</p>
</div>
</div>
<!-- End Info Item -->
<div class="info-item d-flex">
<i class="bi bi-phone flex-shrink-0"></i>
<div>
<h4>Call:</h4>
<p>
+ 234 80 85773372 <br />
+ 234 90 54504321
</p>
</div>
</div>
<!-- End Info Item -->
</div>
</div>
<div class="col-lg-8">
<form id="contact-form" class="php-email-form">
<div class="row">
<div class="col-md-6 form-group">
<input
type="text"
name="name"
class="form-control"
id="name"
placeholder="Your Name"
required=""
/>
</div>
<div class="col-md-6 form-group mt-3 mt-md-0">
<input
type="email"
class="form-control"
name="email"
id="email"
placeholder="Your Email"
required=""
/>
</div>
</div>
<div class="form-group mt-3">
<input
type="text"
class="form-control"
name="subject"
id="subject"
placeholder="Subject"
required=""
/>
</div>
<div class="form-group mt-3">
<textarea
class="form-control"
name="message"
id="message"
placeholder="Message"
required=""
></textarea>
</div>
<div class="my-3">
<div class="loading" style="display: none">Loading...</div>
<div
class="err-message"
style="display: none; color: red; background: transparent"
>
Message Not Sent, Please try again later ❌
</div>
<div
class="sent-message"
style="display: none; color: green; background: transparent"
>
Message Sent Successfully ✅
</div>
</div>
<div class="text-center">
<button type="submit">Send Message</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- /Contact Section -->
</main>
<footer id="footer" class="footer dark-background">
<div class="container">
<div class="row gy-3">
<div class="col-lg-3 col-md-6 d-flex">
<i class="bi bi-geo-alt icon"></i>
<div class="address">
<h4>Address</h4>
<p>TPS 62, Block 21 Plot 1 Crusher (Gada-Shagari),</p>
<p>Along Okene Road, Lokoja, Kogi State</p>
<p></p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex">
<i class="bi bi-telephone icon"></i>
<div>
<h4>Contact</h4>
<p>
<strong>Phone:</strong> <span>+ 234 80 85773372</span><br />
<strong>Email:</strong> <span>Info@julitolaschools.com</span
><br />
</p>
</div>