-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
510 lines (474 loc) · 28.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Blood Bank - About Us</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700&family=Rubik:wght@400;500&display=swap"
rel="stylesheet">
<!-- Icon Font Stylesheet -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet">
<link rel="icon" href="blood2.ico" type="image/x-icon">
</head>
<body>
<!-- Spinner Start -->
<div id="spinner"
class="show bg-white position-fixed translate-middle w-100 vh-100 top-50 start-50 d-flex align-items-center justify-content-center">
<div class="spinner-border text-primary" style="width: 3rem; height: 3rem;" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<!-- Spinner End -->
<!-- Navbar & Hero Start -->
<div class="container-fluid p-0">
<nav class="navbar navbar-expand-lg navbar-light bg-transparent px-4 px-lg-5 py-3 py-lg-0">
<a href="index.html" class="navbar-brand p-0">
<h1 class="display-6 text-primary m-0"><img src="img/logo.png" id="Logo" alt="Logo"> Blood Care</h1>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="fa fa-bars"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ms-auto py-0">
<div class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">Menu</a>
<div class="dropdown-menu m-0">
<a href="user.html" class="dropdown-item">User Dashboard</a>
<a href="adminLogin.html" class="dropdown-item">Admin Login</a>
<a href="#" class="dropdown-item">Edit Profile</a>
<a href="#" class="dropdown-item">Check Status</a>
<a href="#" class="dropdown-item">Total Donate</a>
<a href="#" class="dropdown-item">Total Receive</a>
<a href="#" class="dropdown-item">Delete Account</a>
<a href="404.html" class="dropdown-item">404 Page</a>
<a href="#" class="dropdown-item">Settings</a>
<a href="#" class="dropdown-item">Log Out</a>
</div>
</div>
<a href="index.html" class="nav-item nav-link">Home</a>
<a href="about.html" class="nav-item nav-link active">About Us</a>
<a href="DonorRegistration.html" class="nav-item nav-link">Donate Blood</a>
<a href="ReceiverRegistration.html" class="nav-item nav-link">Receive Blood</a>
<a href="contact.html" class="nav-item nav-link">Contact Us</a>
</div>
<a href="login.html"
class="btn btn-light border border-primary rounded-pill text-primary py-2 px-4 me-4 ">
Log In
</a>
<a href="login.html" class="btn btn-primary rounded-pill text-white py-2 px-4">Sign Up</a>
</div>
</nav>
</div>
<!-- Navbar & Hero End -->
<!-- Header Start -->
<div class="container-fluid bg-breadcrumb">
<ul class="breadcrumb-animation">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<div class="container text-center py-5" style="max-width: 900px;">
<h3 class="display-3 mb-4 wow fadeInDown" data-wow-delay="0.1s">About Us</h1>
<ol class="breadcrumb justify-content-center mb-0 wow fadeInDown" data-wow-delay="0.3s">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item active text-primary">About</li>
<li class="breadcrumb-item"><a href="DonorRegistration.html">Donate</a></li>
<li class="breadcrumb-item"><a href="ReceiverRegistration.html">Receive</a></li>
<li class="breadcrumb-item"><a href="contact.html">Contact</a></li>
</ol>
</div>
</div>
<!-- Header End -->
<!-- About Start -->
<div class="container-fluid overflow-hidden py-5 mt-5">
<div class="container py-5">
<div class="row g-5">
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="RotateMoveLeft">
<img src="img/doctorGrp.jpg" class="img-fluid w-100" alt="">
</div>
</div>
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.3s">
<h4 class="mb-1 text-primary">About Us</h4>
<h1 class="display-5 mb-4">Welcome to Blood Care!</h1>
<p class="mb-4">At Blood Care, we are dedicated to saving lives by connecting blood donors with
patients in need. Our mission goes beyond collecting blood; we aim to build a compassionate
community that understands the importance of blood donation. Join us in spreading hope and
making a real difference in the lives of those facing medical challenges.
</p>
<a href="#" class="btn btn-primary rounded-pill py-3 px-5">About More</a>
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Feature Start -->
<div class="container-fluid feature overflow-hidden py-5">
<div class="container py-5">
<div class="text-center mx-auto mb-5 wow fadeInUp" data-wow-delay="0.1s" style="max-width: 900px;">
<!-- <h4 class="text-primary">Our Feature</h4> -->
<h1 class="display-5 mb-4"> 🚀 Our Mission 🚀</h1>
<p class="mb-0">At Blood Care, our mission is to save lives through the collection and
distribution of blood donations. We are committed to providing safe and reliable blood to patients
in need,
ensuring that every individual has access to the vital resources required for their treatment and
recovery.
We strive to raise awareness about the importance of blood donation in our community.
</p>
<h1 class="display-5 mb-4">👨⚕ Who We Are 👨⚕</h1>
<p class="mb-0">Founded in 2024, the Blood Bank Management System has grown to become a leading platform
in blood bank management.
We are a dedicated team of healthcare professionals, IT experts, and support team working together
to revolutionize how blood donations and transfusions are managed.
</p>
<h1 class="display-5 mb-4">🎯 Our Vision 🎯</h1>
<p class="mb-0">We envision a world where blood shortages are a thing of the past, where every person in
need of blood has immediate access to it, and where donors are empowered and motivated to give the
gift of life. Our goal is to set new standards in blood bank management through innovation,
collaboration, and unwavering dedication to quality and safety.
</p>
<h1 class="display-5 mb-4">✨ Core Values ✨</h1>
<p class="mb-0">At Blood Care, our mission is to save lives through the collection and
distribution of blood donations. We are committed to providing safe and reliable blood to patients
in need,
ensuring that every individual has access to the vital resources required for their treatment and
recovery.
We strive to raise awareness about the importance of blood donation in our community.
</p>
<h1 class="display-5 mb-4">🚑 Our Services 🚑</h1>
<h4 class="mb-1 text-primary" style="margin-top: 29px;">Donor Services</h4>
<div class="row g-4 justify-content-center text-center mb-5">
<div class="col-md-6 col-lg-4 col-xl-3 wow fadeInUp" data-wow-delay="0.1s">
<div class="text-center p-4">
<div class="d-inline-block rounded bg-light p-4 mb-4">
<i class="fas fa-solid fa-book-medical fa-5x text-secondary"></i>
</div>
<div class="feature-content">
<a href="#" class="h4">Educational Resources </a>
<p class="mt-4 mb-0">Comprehensive information on the importance of blood donation,
eligibility criteria, and the donation process.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3 wow fadeInUp" data-wow-delay="0.3s">
<div class="text-center p-4">
<div class="d-inline-block rounded bg-light p-4 mb-4">
<i class="fas fa-solid fa-stethoscope fa-5x text-secondary"></i>
</div>
<div class="feature-content">
<a href="#" class="h4">Health Checks</a>
<p class="mt-4 mb-0"> Pre-donation health screenings to ensure donor safety.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3 wow fadeInUp" data-wow-delay="0.5s">
<div class="text-center rounded p-4">
<div class="d-inline-block rounded bg-light p-4 mb-4">
<i class="fas fa-solid fa-trophy fa-5x text-secondary"></i>
</div>
<div class="feature-content">
<a href="#" class="h4">Rewards and Recognition </a>
<p class="mt-4 mb-0">Programs to recognize and reward regular donors.
</p>
</div>
</div>
</div>
<div class="col-12 wow fadeInUp" data-wow-delay="0.1s">
</div>
<h4 class="mb-1 text-primary" style="margin-top: 29px;">Recipient Services</h4>
<div class="row g-4 justify-content-center text-center mb-5">
<div class="col-md-6 col-lg-4 col-xl-3 wow fadeInUp" data-wow-delay="0.1s">
<div class="text-center p-4">
<div class="d-inline-block rounded bg-light p-4 mb-4">
<!-- <i class="fas fa-solid fa-book-medical fa-5x text-secondary"></i> -->
<i class="fas fa-solid fa-user-nurse fa-5x text-secondary"></i>
</div>
<div class="feature-content">
<a href="#" class="h4">Access to Blood </a>
<p class="mt-4 mb-0">Comprehensive information on the importance of blood donation,
eligibility criteria, and the donation process.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3 wow fadeInUp" data-wow-delay="0.3s">
<div class="text-center p-4">
<div class="d-inline-block rounded bg-light p-4 mb-4">
<i class="fas fa-solid fa-wheelchair fa-5x text-secondary"></i>
</div>
<div class="feature-content">
<a href="#" class="h4">Support Services </a>
<p class="mt-4 mb-0"> Pre-donation health screenings to ensure donor safety.
</p>
</div>
</div>
</div>
<div class="col-12 wow fadeInUp" data-wow-delay="0.1s">
</div>
</div>
<h1 class="display-5 mb-4">🩺 Healthcare Provider Integration 💉</h1>
<div class="row g-4 justify-content-center text-center mb-5">
<div class="col-md-6 col-lg-4 col-xl-3 wow fadeInUp" data-wow-delay="0.1s">
<div class="text-center p-4">
<div class="d-inline-block rounded bg-light p-4 mb-4">
<i class="fas fa-solid fa-briefcase-medical fa-5x text-secondary"></i>
</div>
<div class="feature-content">
<a href="#" class="h4">Seamless Integration </a>
<p class="mt-4 mb-0">Easy integration with hospital systems for streamlined
operations.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3 wow fadeInUp" data-wow-delay="0.3s">
<div class="text-center p-4">
<div class="d-inline-block rounded bg-light p-4 mb-4">
<i class="fas fa-solid fa-syringe fa-5x text-secondary"></i>
</div>
<div class="feature-content">
<a href="#" class="h4">Training and Support</a>
<p class="mt-4 mb-0">Continuous training for healthcare providers on best practices
in blood transfusion and management.
</p>
</div>
</div>
</div>
<div class="col-12 wow fadeInUp" data-wow-delay="0.1s">
</div>
<h1 class="display-5 mb-4">🏥 Our Impact 🏥</h1>
<p class="mb-0">Since our inception, we have facilitated millions of blood donations and
transfusions, directly contributing to saving countless lives. Our innovative approach has
significantly reduced blood shortages in the
regions we operate, and our user-friendly platform has made the process more accessible and
efficient for everyone
involved.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Feature End -->
<!-- Blog Start -->
<div class="container-fluid blog py-5">
<div class="container py-5">
<div class="text-center mx-auto mb-5 wow fadeInUp" data-wow-delay="0.1s" style="max-width: 900px;">
<h4 class="text-primary">Donation Camp Highlights</h4>
<h1 class="display-5 mb-4">Be a Part of the Lifesaving Journey</h1>
<p class="mb-0">Join us at our blood donation camp, where your participation can make a
real difference in the lives of those in need. This event is an opportunity to come together
as a community and provide a vital resource that can save lives. Whether you're donating for
the first time or you're a seasoned donor, your presence is crucial.
Let's unite in this noble cause and help ensure that every patient receives the blood they need.
</p>
</div>
<div class="row g-4 justify-content-center">
<div class="col-md-6 col-lg-4 col-xl-3 wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-item">
<div class="blog-img">
<img src="img/camp1.jpg" class="img-fluid w-100" alt="">
<div class="blog-info">
<span><i class="fa fa-clock"></i> Dec 01.2024</span>
<div class="d-flex">
<span class="me-3"> 3 <i class="fa fa-heart"></i></span>
<a href="#" class="text-white">0 <i class="fa fa-comment"></i></a>
</div>
</div>
</div>
<div class="blog-content text-dark border p-4 ">
<h5 class="mb-4">Saraswati Nagar, Pune District, Maharashtra</h5>
<p class="mb-4">Join us at the community hall in Saraswati Nagar for a blood donation camp!
This is a great opportunity for residents to contribute and support local patients.
Medical professionals will be present to guide first-time donors.
Together, let's save lives!
</p>
<a class="btn btn-light rounded-pill py-2 px-4" href="#">Read More</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3 wow fadeInUp" data-wow-delay="0.3s">
<div class="blog-item">
<div class="blog-img">
<img src="img/camp2.jpg" class="img-fluid w-100" alt="">
<div class="blog-info">
<span><i class="fa fa-clock"></i> Dec 01.2024</span>
<div class="d-flex">
<span class="me-3"> 3 <i class="fa fa-heart"></i></span>
<a href="#" class="text-white">0 <i class="fa fa-comment"></i></a>
</div>
</div>
</div>
<div class="blog-content text-dark border p-4 ">
<h5 class="mb-4">Jaswant Nagar, Jaipur District, Rajasthan</h5>
<p class="mb-4">Jaswant Nagar is hosting a blood donation camp at the local school. This
initiative encourages families to participate and highlights the importance of
donations.
Refreshments and educational materials will be provided. Let's unite for this
life-saving cause!
</p>
<a class="btn btn-light rounded-pill py-2 px-4" href="#">Read More</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3 wow fadeInUp" data-wow-delay="0.5s">
<div class="blog-item">
<div class="blog-img">
<img src="img/camp3.jpg" class="img-fluid w-100" alt="">
<div class="blog-info">
<span><i class="fa fa-clock"></i> Dec 01.2024</span>
<div class="d-flex">
<span class="me-3"> 3 <i class="fa fa-heart"></i></span>
<a href="#" class="text-white">0 <i class="fa fa-comment"></i></a>
</div>
</div>
</div>
<div class="blog-content text-dark border p-4 ">
<h5 class="mb-4">Mahatma Gandhi Nagar, Ahmedabad District, Gujarat</h5>
<p class="mb-4">Mahatma Gandhi Nagar is hosting a blood donation camp at the community hall.
Join us to learn about the importance of donations and support our healthcare system.
Local medical teams will be on-site to assist. Make a difference today!
</p>
<a class="btn btn-light rounded-pill py-2 px-4" href="#">Read More</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3 wow fadeInUp" data-wow-delay="0.7s">
<div class="blog-item">
<div class="blog-img">
<img src="img/camp4.jpg" class="img-fluid w-100" alt="">
<div class="blog-info">
<span><i class="fa fa-clock"></i> Dec 01.2024</span>
<div class="d-flex">
<span class="me-3"> 3 <i class="fa fa-heart"></i></span>
<a href="#" class="text-white">0 <i class="fa fa-comment"></i></a>
</div>
</div>
</div>
<div class="blog-content text-dark border p-4 ">
<h5 class="mb-4">Triveni Nagar, Dehradun District, Uttarakhand</h5>
<p class="mb-4">Triveni Nagar is organizing a blood donation camp at the local park. This
camp encourages community participation and promotes health awareness. Enjoy
family-friendly activities while making a life-saving contribution. Let's save lives
together!
</p>
<a class="btn btn-light rounded-pill py-2 px-4" href="#">Read More</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Blog End -->
<!-- Footer Start -->
<div class="container-fluid footer py-5 wow fadeIn" data-wow-delay="0.2s">
<div class="container py-5">
<div class="row g-5">
<div class="col-md-6 col-lg-6 col-xl-3">
<div class="footer-item d-flex flex-column">
<h4 class="text-dark mb-4">Blood Care</h4>
<a href=""> Why Blood Care?</a>
<a href=""> Our Visions</a>
<a href=""> About Us</a>
<a href=""> Contact Us</a>
<a href=""> Get In Touch</a>
</div>
</div>
<div class="col-md-6 col-lg-6 col-xl-3">
<div class="footer-item d-flex flex-column">
<h4 class="mb-4 text-dark">Quick Links</h4>
<a href=""> About Us</a>
<a href=""> Contact Us</a>
<a href=""> Privacy Policy</a>
<a href=""> Terms & Conditions</a>
<a href=""> Our Team</a>
</div>
</div>
<div class="col-md-6 col-lg-6 col-xl-3">
<div class="footer-item d-flex flex-column">
<h4 class="mb-4 text-dark">Services</h4>
<a href=""> All Services</a>
<a href=""> Donation Updates</a>
<a href=""> Activites</a>
</div>
</div>
<div class="col-md-6 col-lg-6 col-xl-3">
<div class="footer-item d-flex flex-column">
<h4 class="mb-4 text-dark">Contact Info</h4>
<a href=""><i class="fa fa-map-marker-alt me-2"></i> Jhinger Pole, Diamond Harbour Rd,
Sarisha, Jhinga, West Bengal 743368</a>
<a href=""><i class="fas fa-envelope me-2"></i> shubhajitce002@gmail.com</a>
<a href=""><i class="fas fa-phone me-2"></i> +91 7407969835</a>
<a href="" class="mb-3"><i class="fas fa-print me-2"></i> +91 9832479969</a>
<div class="d-flex align-items-center">
<i class="fas fa-share fa-2x text-secondary me-2"></i>
<a class="btn-square btn btn-primary rounded-circle mx-1" href=""><i
class="fab fa-facebook-f"></i></a>
<a class="btn-square btn btn-primary rounded-circle mx-1" href=""><i
class="fab fa-twitter"></i></a>
<a class="btn-square btn btn-primary rounded-circle mx-1" href=""><i
class="fab fa-instagram"></i></a>
<a class="btn-square btn btn-primary rounded-circle mx-1" href=""><i
class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer End -->
<!-- Copyright Start -->
<div class="container-fluid copyright py-4">
<div class="container">
<div class="row g-4 align-items-center">
<div class="col-md-6 text-center text-md-start mb-md-0">
<span class="text-white"><a href="#"><i class="fas fa-copyright text-light me-2"></i>Blood
Care</a>, All right reserved.</span>
</div>
<div class="col-md-6 text-center text-md-end text-white">
Designed By <a class="border-bottom" href="https://github.com/FL4ME-SUVO">Shubhajit</a>
Distributed By <a class="border-bottom" href="https://github.com/FL4ME-SUVO">GiriTech</a>
</div>
</div>
</div>
</div>
<!-- Copyright End -->
<!-- Back to Top -->
<a href="#" class="btn btn-primary btn-lg-square back-to-top"><i class="fa fa-arrow-up"></i></a>
<!-- JavaScript Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/counterup/counterup.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>