-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
320 lines (277 loc) · 12.1 KB
/
about.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
<!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">
<style>
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
/* Header Styles */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000; /* Ensure the header stays on top of other content */
}
.navbar {
padding: 1rem;
background-color: #111416;
color: white;
padding: 1px;
border-radius: 1px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
display: inline-block;
width: 100%;
}
.navbar-brand img {
max-height: 80px;
margin-bottom: 5px;
display: inline-block;
margin-left: -90px;
}
@media screen and (max-width: 480px) {
.navbar-brand img {
max-height: 80px;
display: inline-block;
margin-left: 1px;
}
}
@media screen and (max-width: 768px) {
.navbar-brand img {
max-height: 80px;
display: inline-block;
margin-left: 10px;
}
}
.navbar-nav {
justify-content: center;
flex-grow: 1;
padding: 2px;
border-radius: 1px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.nav-link {
color: white !important;
margin: 0 10px;
transition: background-color 0.3s;
}
.nav-link:hover {
background-color: #555;
border-radius: 5px;
}
.navbar-nav .active {
background-color: black;
border-radius: 5px;
}
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: 0.5rem;
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;
color: black;
}
.btn-primary:hover {
background-color: black;
border-color: black;
}
.hero-image {
width: 100%;
height: auto;
}
.welcome {
padding: 60px 0;
}
.img-fluid{
margin-top: 6.3rem;
}
.container h2{
font-size: 2rem;
font-weight: bold;
text-align: left;
margin-top: 3rem;
}
.col-md-6 p{
font-size: 1.25rem;
margin-top: 10rem;
}
.about-section {
margin: 50px 0;
}
.about-img {
max-width: 100%;
height: auto;
margin-right: 20px;
}
.about-text {
font-size: 1.1rem;
line-height: 1.6;
color: #333;
}
.about-heading {
font-weight: 700;
color: #0056b3;
margin-bottom: 20px;
}
</style>
</head>
<body>
<!-- Header Section -->
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="clfmm.png" alt="Christ Living Faith Miracle Ministry Logo">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="index.html">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">Services</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="sermons.html">Sermons</a>
</li>
<li class="nav-item">
<a class="nav-link" href="events.html">Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="donations.html">Giving/Donations</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
<a class="btn btn-primary ms-lg-auto" href="signup.html">Account</a>
</div>
</div>
</nav>
</header>
<!-- Introduction to the Church -->
<div class="container text-center mb-5">
<img src="knowbible1.jpg" alt="Account Image" class="img-fluid">
</div>
<div class="container about-section">
<div class="row">
<div class="col-lg-6">
<img src="papa1.png" alt="Bishop Image" class="about-img float-start">
</div>
<div class="col-lg-6">
<h2 class="about-heading">About Our Bishop</h2>
<p class="about-text">
Bishop Abraham Bruce is a dynamic and passionate leader, renowned for his unwavering commitment to spiritual growth and community development. With over two decades of ministry experience, he has touched countless lives with his inspiring messages and profound teachings. His journey began at a young age, where he discovered his calling to serve and uplift those around him. Through his leadership, the Christ Living Faith Miracle Ministry has flourished, becoming a beacon of hope for many.
<br><br>
Under his guidance, the ministry has expanded its outreach programs, providing support to the less fortunate and creating opportunities for personal and spiritual growth. Bishop Bruce's teachings emphasize the importance of faith, love, and perseverance in the face of life's challenges. He believes that every individual has a purpose and is dedicated to helping them discover and fulfill their God-given potential.
<br><br>
His approach to ministry is both innovative and inclusive, welcoming people from all walks of life to experience the transformative power of faith. Whether through his sermons, counseling, or community initiatives, Bishop Bruce's impact is felt far and wide. His dedication to his congregation and his unwavering belief in the power of prayer have made him a beloved figure within the church and beyond.
<br><br>
As the ministry continues to grow, Bishop Bruce remains steadfast in his mission to spread the message of hope, love, and redemption. His vision for the future is one of continued expansion and impact, ensuring that the Christ Living Faith Miracle Ministry remains a place of refuge and inspiration for generations to come.
</p>
</div>
</div>
</div>
<!-- Welcome Message -->
<section class="welcome py-5">
<div class="container">
<h2 class="mb-4">Knowing the God of the Bible</h2>
<p>The journey to understanding the God of the Bible is a profound and transformative experience. It invites us to delve deep into the nature of a divine being who is both transcendent and immanent. Through the pages of Scripture, we uncover the attributes, promises, and relationships that define the character of God.</p>
<p>In our pursuit of knowing God, we explore His eternal love, His righteousness, and His desire for a personal relationship with each of us. We discover how His presence guides, comforts, and challenges us to grow in faith and devotion. Embracing this journey allows us to align our lives with His will, fostering a deeper connection and understanding of His divine purpose.</p>
</div>
</section>
<!-- Footer Section -->
<!-- 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>123 Church Road, Sekondi-Takoradi, Ghana</p>
<p>Email: info@clfmm.org</p>
<p>Phone: +233 123 456 789</p>
</div>
<div class="col-md-3 footer-column">
<h3>Follow Us</h3>
<div class="social-media">
<a href="#"><img src="facebook-icon.png" alt="Facebook"></a>
<a href="#"><img src="twitter-icon.png" alt="Twitter"></a>
<a href="#"><img src="instagram-icon.png" alt="Instagram"></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>