-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.html
371 lines (320 loc) · 11.1 KB
/
service.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services - 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;
}
/* Service Page main Styles */
/* Hero Section */
.hero {
background: url('bg (5).jpg') no-repeat center center/cover;
color: #fff;
text-align: center;
padding: 80px 20px;
position: relative;
}
.hero-content {
background: rgba(0, 0, 0, 0.5);
display: inline-block;
padding: 20px;
border-radius: 8px;
}
.hero-content h1 {
font-size: 3.5em;
margin: 0;
font-weight: bold;
text-transform: uppercase;
}
.hero-content p {
font-size: 1.2em;
margin-top: 10px;
}
/* Service Details */
.service-details {
padding: 40px 20px;
display: flex;
flex-direction: column;
align-items: center;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.service-item {
max-width: 800px;
margin: 20px 0;
text-align: center;
}
.service-item h2 {
font-size: 2em;
margin-bottom: 10px;
color: #007BFF;
font-weight: bold;
}
.service-item p {
font-size: 1.1em;
color: #555;
line-height: 1.6;
}
/* Call to Action */
.cta {
background-color: #ffffff;
color: black;
text-align: center;
padding: 40px 20px;
}
.cta h2 {
font-size: 2.5em;
margin: 0;
}
.cta p {
font-size: 1.2em;
}
.cta-button {
display: inline-block;
padding: 12px 24px;
font-size: 1.2em;
color: #fff;
background-color: #333;
border-radius: 5px;
text-decoration: none;
margin-top: 20px;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: #555;
}
.hero-content{
margin-top: 10rem;
}
</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>
<main class="services-main">
<section class="hero">
<div class="hero-content">
<h1>Our Services</h1>
<p>Discover our weekly services and join us in worship and community.</p>
</div>
</section>
<section class="service-details">
<div class="service-item">
<h2>Monday Prayer Meetings</h2>
<p>Join us every Monday at 6:00 PM for an uplifting time of prayer and intercession. Our prayer meetings are designed to help you connect with God and find spiritual strength.</p>
</div>
<div class="service-item">
<h2>Wednesday Bible Studies</h2>
<p>Our Bible studies take place every Wednesday at 7:00 PM. Engage in in-depth study and discussion of Scripture to deepen your understanding and grow in faith.</p>
</div>
<div class="service-item">
<h2>Sunday Services</h2>
<p>Experience our main worship service every Sunday at 10:00 AM. Join us for dynamic worship, inspiring sermons, and a vibrant community atmosphere.</p>
</div>
</section>
<section class="cta">
<h2>Get Involved</h2>
<p>We invite you to be part of our services and community. For more information or to get involved, please contact us.</p>
<a href="contact.html" class="cta-button">Contact Us</a>
</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>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>
<script>
document.addEventListener('DOMContentLoaded', () => {
// Additional JavaScript functionality can be added here if needed
});
</script>
</body>
</html>