-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
734 lines (634 loc) · 28.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Christ Living Faith Miracle Ministry</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
/* General Styles */
/* Custom styles for the navbar */
.navbar {
background-color: #111416; /* Set the header background color to black */
padding: 1rem 1rem; /* Adjust padding to reduce space around the navbar */
}
.navbar-brand {
margin-left: 0; /* Reset margin */
padding-left: 0; /* Remove padding */
}
.container-fluid {
padding-left: 0; /* Remove padding for the left edge */
}
/* Custom styles for the navbar toggler */
.navbar-toggler {
width: 35px; /* Adjust the width as needed */
height: 35px; /* Adjust the height as needed */
padding: 2px; /* Adjust padding to make the icon smaller */
}
/* Custom styles for the offcanvas menu */
.offcanvas {
background-color: #111416; /* Set the offcanvas background color to dark grey */
color: white; /* Set text color to white */
}
.offcanvas .nav-link {
color: white; /* Set text color of nav links in offcanvas */
}
.offcanvas .nav-link:hover {
color: #f8f9fa; /* Set hover color for nav links in offcanvas */
background-color: #333; /* Optional: Set a background color on hover for better visibility */
}
/* Custom styles for the navigation links on larger screens */
.nav-link {
color: white; /* Set nav links color to white */
transition: color 0.3s, background-color 0.3s; /* Smooth transition for hover effect */
}
.nav-link:hover {
color: black; /* Set hover color for nav links to black */
background-color: white; /* Set background color on hover to white */
border-radius: 5px; /* Optional: Add some rounding to the hover effect */
}
/* Custom styles for the Account button */
.btn-primary {
background-color: whitesmoke; /* Set button background color */
border-color: white;
color: black; /* Set button text color */
font-size: 13px;
padding: 6px;
}
.btn-primary:hover {
background-color: black; /* Set button background color on hover */
border-color: black;
color: white; /* Set button text color on hover */
}
.navbar-toggler-icon {
background-image: none; /* Remove default image */
}
.navbar-toggler-icon::before {
content: "\2630"; /* Unicode for a hamburger menu icon */
color: white; /* Change the toggler icon color to white */
font-size: 1.5rem; /* Adjust size as needed */
}
/* Custom styles for the close button of the offcanvas */
.offcanvas-header .btn-close {
filter: invert(1); /* Invert the default close button color to white */
}
.offcanvas-header .btn-close:hover {
filter: invert(0.5); /* Change the close button color on hover */
}
/*dee*/
footer {
background-color: #111416;
padding: 1rem 0;
color: #ffffff;
}
.footer-row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.footer-column {
flex: 1;
margin: 10px;
}
.footer-column h3 {
border-bottom: 2px solid #007bff;
padding-bottom: 3px;
margin-bottom: 1rem;
}
.footer-bottom {
background-color: #111416;
padding: 1rem;
text-align: center;
}
.social-media a img {
width: 30px;
height: 30px;
margin-right: 10px;
}
.btn-primary {
background-color: whitesmoke;
border-color: black;
}
.btn-primary:hover {
background-color: black;
border-color: white;
}
.hero {
position: relative;
height: 80vh;
overflow: hidden;
}
.hero video {
width: 100%;
height: 100%;
object-fit: cover;
}
.hero-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: white;
}
.hero-overlay h2 {
font-size: 3rem;
margin-bottom: 1rem;
}
@media screen and (max-width: 468px) {
.hero-overlay h2 {
font-size: 1.5rem;
margin-bottom: 1rem;
margin-top: 90px;
}
.col-md-6{
font-size: 15px;
}
.container h2{
font-size: 28px;
text-align: center;
margin-bottom: 2rem;
font-weight: bold;
}
}
.hero-overlay p {
font-size: 1.25rem;
margin-bottom: 2rem;
}
.btn {
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
border: none;
}
.btn:hover {
background-color: black;
color: white;
}
/* hero style end*/
.devotional-section {
background: linear-gradient(to right, #f4f4f9, #e0e7ff);
padding: 4rem 0;
}
.devotional-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.devotional-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.devotional-header {
margin-bottom: 2rem;
}
.devotional-header h2 {
font-size: 2.5rem;
font-weight: bold;
}
.devotional-content {
text-align: center;
}
.devotional-content p {
font-size: 1.1rem;
}
.devotional-image img {
border-radius: 15px;
max-width: 100%;
}
.btn-devotional {
background-color: whitesmoke;
color: black;
border: none;
}
.btn-devotional:hover {
background-color: black;
color: whitesmoke;
}
.event-details{
font-size: 1.5rem;
margin-top: 5rem;
}
.image-gallery{
margin-bottom: 4rem;
}
.event .container{
margin-bottom: -42px;
}
.alert-link{
font-size: 1.5rem;
color: #007bff;
}
.alert-primary{
margin: 0 auto;
margin-top: -70px;
background-color: whitesmoke;
}
.goe{
text-align: center;
margin-bottom: 5px;
}
.goe-details{
margin-top: -8rem;
margin-bottom: 4rem;
}
/* Container for the iframe */
.iframe-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
height: 0;
overflow: hidden;
max-width: 100%;
margin: 0 auto; /* Center the container */
}
/* Responsive iframe */
.iframe-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
/* Center the contact details section */
.contact-details-section {
max-width: 800px; /* Adjust as needed */
margin: 0 auto; /* Center horizontally */
padding: 20px; /* Optional: Add padding for spacing */
text-align: center; /* Center the text */
}
/* Ensure that lists and other elements look good */
.contact-details-section ul {
list-style-type: none; /* Remove default list styling */
padding: 0;
margin: 0;
}
.contact-details-section address {
margin: 0;
margin-bottom: 1px;
}
.contact-details-section a {
color: #007bff; /* Adjust color to fit your design */
text-decoration: none;
}
.contact-details-section a:hover {
text-decoration: underline;
}
.col-md-6 img{
margin-bottom: 2rem;
}
.devotional-section{
margin-top: 3rem;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="clfmm.png" alt="Logo" width="30" height="30">
</a>
<!-- Toggler for smaller screens -->
<button class="navbar-toggler d-lg-none" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasNavbar" aria-controls="offcanvasNavbar" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar items for larger screens -->
<div class="collapse navbar-collapse d-none d-lg-flex" id="navbarNav">
<ul class="navbar-nav mx-auto">
<li class="nav-item">
<a class="nav-link active mx-3" aria-current="page" href="index.html" style="color: rgb(177, 166, 166);">Home</a>
</li>
<li class="nav-item">
<a class="nav-link mx-3" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link mx-3" href="service.html">Service</a>
</li>
<li class="nav-item">
<a class="nav-link mx-3" href="ministries.html">Ministries</a>
</li>
<li class="nav-item">
<a class="nav-link mx-3" href="contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link mx-3" href="sermons.html">Sermon</a>
</li>
<li class="nav-item">
<a class="nav-link mx-3" href="events.html">Event</a>
</li>
<li class="nav-item">
<a class="nav-link mx-3" href="donations.html">Giving/Donations</a>
</li>
</ul>
<div class="d-flex align-items-center ms-auto">
<a href="signup.html" class="btn btn-primary">Account</a>
</div>
</div>
<!-- Offcanvas for smaller screens -->
<div class="offcanvas offcanvas-end d-lg-none" tabindex="-1" id="offcanvasNavbar" aria-labelledby="offcanvasNavbarLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="offcanvasNavbarLabel">Menu</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
<li class="nav-item">
<a class="nav-link active mx-3" aria-current="page" href="index.html" style="color: rgb(177, 166, 166);">Home</a> </li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="service.html">Service</a>
</li>
<li class="nav-item">
<a class="nav-link" href="ministries.html">Ministries</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="sermons.html">Sermon</a>
</li>
<li class="nav-item">
<a class="nav-link" href="events.html">Event</a>
</li>
<li class="nav-item">
<a class="nav-link" href="donations.html">Giving/Donations</a>
</li>
</ul>
<div class="d-flex justify-content-end mt-3">
<a href="signup.html" class="btn btn-primary">Account</a>
</div>
</div>
</div>
</div>
</nav>
<!-- Main Content Area -->
<main>
<!-- Hero Section with Background Video -->
<section class="hero">
<video autoplay muted loop id="heroVideo">
<source src="goe.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<div class="hero-overlay">
<h2>Welcome to Christ Living Faith Miracle Ministry</h2>
<p>Join us in faith, worship, and community</p>
<a href="about.html" class="btn">Learn More</a>
</div>
</section>
<!-- Welcome Section -->
<section class="welcome-section py-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 text-center">
<div class="alert alert-primary" role="alert">
<p>If you are a member of Christ Living Faith, please <a href="signup.html" class="alert-link">sign up here</a> to stay connected and access exclusive member content.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Introduction to the Church -->
<section class="introduction py-5">
<div class="container">
<h2>About Us</h2>
<div class="row">
<div class="col-md-6">
<img src="papa1.png" alt="Bishop Abraham Bruce" class="img-fluid rounded">
</div>
<div class="col-md-6">
<p>CHRIST LIVING FAITH MIRACLE MINISTRY CHURCH: Founded by Bishop Abraham Bruce, our church has been a beacon of faith in Sekondi-Takoradi. We are committed to serving our local community and spreading the message of hope and salvation through our various ministries and outreach programs. <br>
Our mission is to bring spiritual growth and support to everyone who walks through our doors.
At Christ Living Faith Miracle Ministry, we believe in fostering a loving and inclusive environment where all individuals can experience God's grace and transform their lives. Our church offers a range of services and activities designed to cater to different needs and ages, including dynamic worship services, engaging Bible studies, and vibrant youth programs.
Our dedicated teams work tirelessly to address the needs of our community, providing support through charity events, counseling services, and educational programs. We are passionate about making a positive impact both locally and beyond, driven by the belief that faith can lead to profound change.
We invite you to join us and be a part of this journey of faith, hope, and transformation. Whether you are seeking spiritual growth, a supportive community, or a place to serve, you will find a welcoming home here at Christ Living Faith Miracle Ministry.
</p>
<p style="font-size: 20px; font-family: 'Arial Black', sans-serif; color: #700a85; text-transform: uppercase; letter-spacing: 2px; text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);">
<em style="font-weight: bold;">CHRIST LIVING FAITH!!!: "OUR GOD IS ABLE"</em>
</p>
</div>
</div>
</div>
</section>
<!-- Image Slider Section -->
<section class="image-slider py-5">
<div class="container">
<h2>Latest Programs</h2>
<!-- Add data-bs-ride="carousel" for auto sliding -->
<div id="sliderExample" class="carousel slide" data-bs-ride="carousel" data-bs-interval="3000"> <!-- 3000 milliseconds (3 seconds) -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="program3.jpg" class="d-block w-100" alt="Slide 1">
</div>
<div class="carousel-item">
<img src="program4.jpg" class="d-block w-100" alt="Slide 2">
</div>
<div class="carousel-item">
<img src="program5.jpg" class="d-block w-100" alt="Slide 3">
</div>
<div class="carousel-item">
<img src="program6.jpg" class="d-block w-100" alt="Slide 4">
</div>
<div class="carousel-item">
<img src="program7.jpg" class="d-block w-100" alt="Slide 5">
</div>
<div class="carousel-item">
<img src="program8.jpg" class="d-block w-100" alt="Slide 6">
</div>
<div class="carousel-item">
<img src="program9.jpg" class="d-block w-100" alt="Slide 7">
</div>
<div class="carousel-item">
<img src="program10.jpg" class="d-block w-100" alt="Slide 8">
</div>
<div class="carousel-item">
<img src="program11.jpg" class="d-block w-100" alt="Slide 9">
</div>
<div class="carousel-item">
<img src="program12.jpg" class="d-block w-100" alt="Slide 10">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#sliderExample" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#sliderExample" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<!-- Upcoming Events -->
<section class="events py-5">
<div class="container">
<h2>Upcoming Events</h2>
<h3 class="heading-3">Gathering of Eagles</h3>
<div class="row">
<div class="col-md-6">
<img src="goe2024.jpg" class="img-fluid" alt="Gathering-of-Eagles">
</div>
<div class="col-md-6">
<div class="image-gallery">
<div class="row">
<div class="col-4 mb-2">
<img src="service (7).jpg" class="img-fluid" alt="Event Image">
</div>
<div class="col-4 mb-2">
<img src="service (8).jpg" class="img-fluid" alt="Event Image">
</div>
<div class="col-4 mb-2">
<img src="service (9).jpg" class="img-fluid" alt="Event Image">
</div>
<div class="col-4 mb-2">
<img src="service (3).jpg" class="img-fluid" alt="Event Image">
</div>
<div class="col-4 mb-2">
<img src="program1.jpg" class="img-fluid" alt="Event Image">
</div>
<div class="col-4 mb-2">
<img src="program2.jpg" class="img-fluid" alt="Event Image">
</div>
</div>
</div>
<div class="event-details mt-1 text-center">
</div>
</div>
</div>
</div>
</section>
<div class="goe-details">
<h4 class="goe">Annual Church Convention</h4>
<p class="goe">Date: August 26, 2024</p>
<p class="goe">Join us for a day of worship, teaching, and fellowship.</p>
</div>
<!-- Daily Devotional -->
<!-- Devotional Section -->
<section class="devotional-section">
<div class="container">
<div class="row devotional-header text-center">
<div class="col">
<h2>Daily Devotionals</h2>
<p>Start your day with inspiration and spiritual growth.</p>
</div>
</div>
<div class="row">
<div class="col-md-4 mb-4">
<div class="card devotional-card">
<div class="devotional-image">
<img src="morning-reflection.jpg" alt="Devotional Image">
</div>
<div class="card-body">
<h5 class="card-title">Morning Reflections</h5>
<p class="card-text">A peaceful and thought-provoking way to start your day with the word of God.</p>
<a href="devotional-detail.html" class="btn btn-devotional">Read More</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card devotional-card">
<div class="devotional-image">
<img src="daily-scripture.jpg" alt="Devotional Image">
</div>
<div class="card-body">
<h5 class="card-title">Daily Scripture</h5>
<p class="card-text">Find a daily scripture that speaks to your heart and guides your steps.</p>
<a href="devotional-detail.html" class="btn btn-devotional">Read More</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card devotional-card">
<div class="devotional-image">
<img src="quote.jpg" alt="Devotional Image">
</div>
<div class="card-body">
<h5 class="card-title">Inspirational Quotes</h5>
<p class="card-text">Daily quotes to uplift and encourage you in your spiritual journey.</p>
<a href="devotional-detail.html" class="btn btn-devotional">Read More</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Page -->
<div class="iframe-container">
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLScagX90thjCEorv2-OY7-ur9-_yMbHmDuCUisU3Qv0omoRWXw/viewform?embedded=true" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
<!-- Google Maps Embed Section -->
<section class="map-section mb-4">
<h3>Find Us Here</h3>
<div class="map-container">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3916.234484747574!2d-1.7585706845903395!3d5.256670296124814!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xfbac8b99a4e76241%3A0x4d9c9e146c8d4c82!2sSekondi-Takoradi%2C%20Ghana!5e0!3m2!1sen!2sgh!4v1690467477381!5m2!1sen!2sgh" width="100%" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</section>
<!-- Office Hours and Contact Details Section -->
<section class="contact-details-section">
<h3>Office Hours & Contact Info</h3>
<p><strong>Office Hours:</strong></p>
<ul>
<li>Monday - Friday: 9:00 AM - 3:00 PM</li>
<li>Saturday: 10:00 AM - 2:00 PM</li>
<li>Sunday: Closed</li>
</ul>
<p><strong>Address:</strong></p>
<address>
Christ Living Faith Miracle Ministry<br>
Biscoe Road<br>
Mempeasem-Down,Sekondi-Takoradi
</address>
<p><strong>Phone:</strong> <a href="tel:+233542367766">+233 54 236 7766</a></p>
<p><strong>Email:</strong> <a href="mailto:clfmm102@gmail.com">clfmm102@gmail.com</a></p>
</section>
</div>
</section>
</main>
<!-- Footer Section -->
<footer style="background-color: #111416;">
<div class="container">
<div class="row footer-row">
<div class="col-md-3 footer-column">
<h3>About Us</h3>
<p>Christ Living Faith Miracle Ministry is dedicated to spreading the love and teachings of Jesus Christ. We are committed to our local community and beyond.</p>
</div>
<div class="col-md-3 footer-column">
<h3>Quick Links</h3>
<ul class="list-unstyled">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="service.html">Services</a></li>
<li><a href="ministries.html">Ministries</a></li>
<li><a href="sermons.html">Sermons</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="donations.html">Giving/Donations</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="col-md-3 footer-column">
<h3>Contact Us</h3>
<p>Briscoe Road, Mempeasem-Down Sekondi-Takoradi</p>
<p><strong>Phone:</strong> <a href="tel:+233542367766">+233 54 236 7766</a></p>
<p><strong>Email:</strong> <a href="mailto:clfmm102@gmail.com">clfmm102@gmail.com</a></p>
</div>
<div class="col-md-3 footer-column">
<h3>Follow Us</h3>
<div class="social-media">
<a href="https://www.facebook.com/clfmm?mibextid=ZbWKwL"><img src="facebook-icon.png" alt="Facebook"></a>
<a href="#"><img src="youtube-icon.png" alt="YouTube"></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Christ Living Faith Miracle Ministry. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Bootstrap JS and dependencies -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.7/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js"></script>
<!-- Optional: Custom JavaScript -->
<script src="script.js"></script>
</body>
</html>