-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
451 lines (420 loc) · 25.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="Blood Bank kyabb">
<meta property="og:description" content="Donate Blood and Save Other Life">
<meta property="og:image" content="resources/img/logo.png">
<meta property="og:url" content="https://kyabb.com">
<title>Blood Bank</title>
<link rel="shortcut icon" href="resources/img/logo.png" type="image/x-icon">
<!-- vendor style -->
<!-- normalize -->
<link rel="stylesheet" href="vendor/css/normalize.css">
<!-- google font -->
<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=Anton&family=Fredoka+One&family=Open+Sans&family=Tourney:wght@200&display=swap" rel="stylesheet">
<!-- bootstrap link -->
<link rel="stylesheet" href="vendor/css/bootstrap.min.css">
<!-- font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="vendor/css/font-awesome.min.css">
<!--animated headline css -->
<link rel="stylesheet" href="vendor/css/animateHeader.css">
<!-- data-aos -->
<link rel="stylesheet" href="vendor/css/aos.css">
<!-- owl carousel -->
<link rel="stylesheet" href="vendor/css/owl.carousel.min.css">
<link rel="stylesheet" href="vendor/css/owl.theme.default.css">
<!-- custom style -->
<link rel="stylesheet" href="resources/css/style.css">
<link rel="stylesheet" href="resources/css/responsive.css">
</head>
<body>
<!-- header starts -->
<header>
<nav class="navbar">
<div class="container-fluid">
<a href="index.html" class="nav-logo col-lg-3">
<img src="resources/img/logo.png" alt="logo" class="logo">
<div class="logo-text">
Blood Bank
</div>
</a>
<i class=" fa fa-bars nav-collapse text-white" onclick="openNav()"></i>
<div class="nav-items col-lg-9">
<button class="nav-exit d-none btn border-0" onclick="closeNav()">×</button>
<a onclick="closeNav()" href="index.html" class="nav-btn active">Home</a>
<a href="#" class="nav-btn" onclick="preventListener(event)">
<div class="dropdown">
<div class="dropdown-btn prevent-listener">
Blood Group <i class=" fa fa-angle-down dropdown-icon"></i>
</div>
<div class="dropdown-items">
<a onclick="closeNav()" href="#search-donor" class=" dropdown-item">A+</a>
<a onclick="closeNav()" href="#search-donor" class=" dropdown-item">A-</a>
<a onclick="closeNav()" href="#search-donor" class=" dropdown-item">B+</a>
<a onclick="closeNav()" href="#search-donor" class=" dropdown-item">B-</a>
<a onclick="closeNav()" href="#search-donor" class=" dropdown-item">AB+</a>
<a onclick="closeNav()" href="#search-donor" class=" dropdown-item">AB-</a>
<a onclick="closeNav()" href="#search-donor" class=" dropdown-item">O+</a>
<a onclick="closeNav()" href="#search-donor" class=" dropdown-item">O-</a>
</div>
</div>
</a>
<a onclick="closeNav()" href="#donor" class="nav-btn">Donor</a>
<a onclick="closeNav()" href="#need-blood" class="nav-btn">Blood Needs</a>
<a onclick="closeNav()" href="more.html" class="nav-btn">More</a>
<div class="join col-lg-4 text-right m-0 p-0">
<!-- <a href="#" class="nav-btn btn bg-red px-4 text-white">Login</a>
<a href="#" class="nav-btn btn bg-red px-4 text-white">Registration</a> -->
<div class="me">
<img src="resources/img/profile.svg" alt="profile" title="My Profile" class="profile">
<a href="#" class=" prevent-listener profile-name" onclick="preventListener(event)">My Name</a>
<div class="profile-collapse">
<p><a href="profile/profile.html" class=" profile-collapse-item">My Profile</a></p>
<p><a href="#" class=" profile-collapse-item">Logout</a></p>
</div>
</div>
</div>
</div>
</div>
</nav>
<!-- landing page section starts from here -->
<section id="landing-page">
<div class="overlay">
</div>
<!-- landing page content -->
<div class="container pt-5">
<div class="row d-flex align-items-center ">
<div class="col-lg-7 pt-5">
<!-- hero section starts -->
<div class="hero pt-5">
<h1 class=" text-anton text-white hero-f-h">DONATING <span class=" text-red">BLOOD</span> CAN</h1>
<!-- cd-intro -->
<section class="cd-intro m-0 p-0">
<h1 class="cd-headline letters type text-left text-dark">
<span class="cd-words-wrapper waiting text-anton ">
<b class="is-visible">benefit your physical health</b>
<b>helps in get rid of negative feelings</b>
<b>reduce stress</b>
<b>improve blood circulation</b>
</span>
</h1>
</section>
<!-- cd-intro -->
<h2 class=" text-white text-anton pt-2">EVERY 2 SECONDS <span class=" text-red"> SOMEONE NEED BLOOD</span> </h2>
<a href="#" class="hero-btn text-anton">Donate Blood</a>
</div>
<!-- hero section ends -->
</div>
</div>
</div>
</section>
</header>
<!--header ends -->
<!-- main Start -->
<main>
<!-- search blood in your Area -->
<section id="search-donor">
<div class="container h-100">
<div class="row h-100">
<div class="col-12 border-right col-md-6" data-aos="flip-right" data-aos-duration="800">
<div class="search-donor ">
<!-- search for blood donor -->
<h1 class="title search-donor-title" >
Search a <span class="title-style">blood donor</span> in your area :
</h1>
<form action="#">
<!-- datalist for blood group -->
<datalist id="blood-group-dlist">
<option value="A+">A+</option>
<option value="A-">A-</option>
<option value="B+">B+</option>
<option value="B-">B-</option>
<option value="AB+">AB+</option>
<option value="AB-">AB-</option>
<option value="O+">O+</option>
<option value="O-">O-</option>
</datalist>
<datalist id="location-dlist">
<option value="sirajganj">sirajganj</option>
<option value="dhaka">dhaka</option>
<option value="naogaon">naogaon</option>
<option value="bogra">bogra</option>
<option value="comilla">comilla</option>
<option value="sylhet">sylhet</option>
</datalist>
<div class="input-group px-5">
<input type="text" list="blood-group-dlist" name="bloodGroup" id="blood-group" placeholder=" Choose Blood Group" required class="">
<input type="text" name="location" list="location-dlist" placeholder="Choose a place" class="" required>
</div>
<input type="submit" name="submit" id="" class=" btn btn-primary d-block m-auto search-donor-btn" value="Search">
</form>
</div>
</div>
<div class="col-12 col-md-6" data-aos="flip-left" data-aos-duration="800">
<!-- request for blood -->
<div class="req-blood">
<h1 class="title">
emergency need <span class=" title-style">blood</span>?
</h1>
<h1 class=" text-dark">
Fill up a form to apply a request for <span class=" text-dark"> Blood Require</span>
</h1>
<a href="req_blood.html" class=" btn btn-primary d-block m-auto search-donor-btn">Fill form</a>
</div>
</div>
</div>
</div>
</section>
<!-- Some donors Section starts -->
<section id="donor" class=" d-flex justify-content-center align-items-center">
<div class="container-md container-fluid">
<div class="donor">
<h1 class="title text-center" data-aos="fade-down" data-aos-duration="800">
<span class="title-style">Some of blood donors</span>
</h1>
<!-- some donors -->
<div class="some-donor owl-carousel owl-theme" data-aos="fade-up" data-aos-duration="800">
<div class="card jumbotron p-0 eligible item">
<img src="resources/img/donor1.jpg" alt="Donor" class="card-img">
<div class="card-blood-group">O+</div>
<div class="card-text">
<h3 class=" text-dark font-weight-bold">Shubrato Debnath</h3>
<h4><b>Blood Group :</b> <span class=" text-red font-weight-bold">O+</span></h4>
<br>
<h4><b>Last donate :</b> 4 months ago</h4>
<h4><b>Location :</b>Sirajganj</h4>
<h4><b>Contact :</b> <a href="tel: 01759458961" class="card-phone">01759458691</a> <h4>
<small><a href="profile/view_profile.html" class=" card-link">View profile <i class=" fa fa-angle-double-right text-red card-link-icon"></i></a></small>
</div>
</div>
<div class="card jumbotron p-0 eligible item">
<img src="resources/img/donor2.jpg" alt="Donor" class="card-img">
<div class="card-blood-group">B+</div>
<div class="card-text">
<h3 class=" text-dark font-weight-bold">Anisul Islam</h3>
<h4><b>Blood Group :</b> <span class=" text-red font-weight-bold">O+</span></h4>
<br>
<h4><b>Last donate :</b> 8 months ago</h4>
<h4><b>Location :</b>taltola, Bogura</h4>
<h4><b>Contact :</b> <a href="tel: 01753698444" class="card-phone">01753698444</a> <h4>
<small><a href="profile/view_profile.html" class=" card-link">View profile <i class=" fa fa-angle-double-right text-red card-link-icon"></i></a></small>
</div>
</div>
<div class="card jumbotron p-0 eligible item">
<img src="resources/img/male.jpg" alt="Donor" class="card-img">
<div class="card-blood-group">AB-</div>
<div class="card-text">
<h3 class=" text-dark font-weight-bold">Abdul Karim</h3>
<h4><b>Blood Group :</b> <span class=" text-red font-weight-bold">AB-</span></h4>
<br>
<h4><b>Last donate :</b> 8 months ago</h4>
<h4><b>Location :</b>Betil, sirajganj</h4>
<h4><b>Contact :</b> <a href="tel: 0186612115" class="card-phone">0186612115</a> <h4>
<small><a href="profile/view_profile.html" class=" card-link">View profile <i class=" fa fa-angle-double-right text-red card-link-icon"></i></a></small>
</div>
</div>
<div class="card jumbotron p-0 eligible item">
<img src="resources/img/male.jpg" alt="Donor" class="card-img">
<div class="card-blood-group">F+</div>
<div class="card-text">
<h3 class=" text-dark font-weight-bold">Tamim Iqbal</h3>
<h4><b>Blood Group :</b> <span class=" text-red font-weight-bold">F+</span></h4>
<br>
<h4><b>Last donate :</b> 8 months ago</h4>
<h4><b>Location :</b>Betil, sirajganj</h4>
<h4><b>Contact :</b> <a href="tel: 0186612115" class="card-phone">0186612115</a> <h4>
<small><a href="profile/view_profile.html" class=" card-link">View profile <i class=" fa fa-angle-double-right text-red card-link-icon"></i></a></small>
</div>
</div>
<div class="card jumbotron p-0 eligible item">
<img src="resources/img/female.jpg" alt="Donor" class="card-img">
<div class="card-blood-group">O-</div>
<div class="card-text">
<h3 class=" text-dark font-weight-bold">Suborna Sen</h3>
<h4><b>Blood Group :</b> <span class=" text-red font-weight-bold">O-</span></h4>
<br>
<h4><b>Last donate :</b> 8 months ago</h4>
<h4><b>Location :</b>Betil, sirajganj</h4>
<h4><b>Contact :</b> <a href="tel: 0186612115" class="card-phone">0186612115</a> <h4>
<small><a href="profile/view_profile.html" class=" card-link">View profile <i class=" fa fa-angle-double-right text-red card-link-icon"></i></a></small>
</div>
</div>
<div class="card jumbotron p-0 eligible item">
<img src="resources/img/female.jpg" alt="Donor" class="card-img">
<div class="card-blood-group">O-</div>
<div class="card-text">
<h3 class=" text-dark font-weight-bold">Rabeya Khatun</h3>
<h4><b>Blood Group :</b> <span class=" text-red font-weight-bold">A-</span></h4>
<br>
<h4><b>Last donate :</b> 2 months ago</h4>
<h4><b>Location :</b>Betil, sirajganj</h4>
<h4><b>Contact :</b> <a href="tel: 0186612115" class="card-phone">0186612115</a> <h4>
<small><a href="profile/view_profile.html" class=" card-link">View profile <i class=" fa fa-angle-double-right text-red card-link-icon"></i></a></small>
</div>
</div>
</div>
<!--View all button-->
<div class="view-all">
<a href="all-donors.html" class="view-all-link">See All Donor <i class="fa fa-angle-double-right"></i></a>
</div>
</div>
</div>
</section>
<!-- who need bloods section starts -->
<section id="need-blood">
<div class="container-md container-fluid">
<div class="need-blood ">
<h1 class="title text-center" data-aos="fade-down" data-aos-duration="800">
<span class="title-style text-white">They need blood</span>
</h1>
<!-- carousel -->
<div class="owl-carousel owl-theme" data-aos="fade-up" data-aos-duration="800">
<div class="bs-card m-2">
<div class="bs-card-blood-group">O+</div>
<img src="resources/img/blood-drop.png" alt="" class="card-img bs-img">
<div class="bs-card-text">
<h3 class=" font-weight-bold">Shubrato Debnath</h3>
<h4><b> I need <span class=" text-red font-weight-bold"> O+ </span> Blood within
<span class=" text-red"> 32 hour </span> </b></h4>
<br>
<h4><b>Quantity : </b> 2 bags</h4>
<h4><b>Hospital : </b>Khwaja Yunus Ali Hospital,Sirajganj</h4>
<h4><b>Contact : </b> <a href="tel: 01759458961" class="card-phone">01759458691</a> <h4>
</div>
</div>
<div class="bs-card m-2">
<div class="bs-card-blood-group">B-</div>
<img src="resources/img/blood-drop.png" alt="" class="card-img bs-img">
<div class="bs-card-text">
<h3 class=" font-weight-bold">Sourav Debnath</h3>
<h4><b> I need <span class=" text-red font-weight-bold"> B- </span> Blood within
<span class=" text-red"> 2 hour </span> </b></h4>
<br>
<h4><b>Quantity : </b> 1 bags</h4>
<h4><b>Hospital : </b>Royal Bengal Hospital,Sirajganj</h4>
<h4><b>Contact : </b> <a href="tel: 01733704499" class="card-phone">01733704499</a> <h4>
</div>
</div>
<div class="bs-card m-2">
<div class="bs-card-blood-group">AB-</div>
<img src="resources/img/blood-drop.png" alt="" class="card-img bs-img">
<div class="bs-card-text">
<h3 class=" font-weight-bold">Rafiur Rain</h3>
<h4><b> I need <span class=" text-red font-weight-bold"> AB- </span> Blood within
<span class=" text-red"> 10 day</span> </b></h4>
<br>
<h4><b>Quantity : </b> 3 bags</h4>
<h4><b>Hospital : </b>Pabna Govt. Hospital, Pabna</h4>
<h4><b>Contact : </b> <a href="tel: 01733704499" class="card-phone">01733704499</a> <h4>
</div>
</div>
<div class="bs-card m-2">
<div class="bs-card-blood-group">AB-</div>
<img src="resources/img/blood-drop.png" alt="" class="card-img bs-img">
<div class="bs-card-text">
<h3 class=" font-weight-bold"> Bristi akter</h3>
<h4><b> I need <span class=" text-red font-weight-bold"> AB- </span> Blood within
<span class=" text-red"> 2 day</span> </b></h4>
<br>
<h4><b>Quantity : </b> 3 bags</h4>
<h4><b>Hospital : </b>Pabna Govt. Hospital, Pabna</h4>
<h4><b>Contact : </b> <a href="tel: 01733704499" class="card-phone">01733704499</a> <h4>
</div>
</div>
<div class="bs-card m-2">
<div class="bs-card-blood-group">A+</div>
<img src="resources/img/blood-drop.png" alt="" class="card-img bs-img">
<div class="bs-card-text">
<h3 class=" font-weight-bold">Zerin Akter</h3>
<h4><b> I need <span class=" text-red font-weight-bold"> A+ </span> Blood within
<span class=" text-red"> 5 hour</span> </b></h4>
<br>
<h4><b>Quantity : </b> 3 bags</h4>
<h4><b>Hospital : </b>Pabna Govt. Hospital, Pabna</h4>
<h4><b>Contact : </b> <a href="tel: 01733704499" class="card-phone">01733704499</a> <h4>
</div>
</div>
</div>
<!-- carousel ends -->
</div>
<!--View all button-->
<div class="view-all">
<a href="needs-blood.html" class="view-all-link">See More <i class="fa fa-angle-double-right"></i></a>
</div>
</div>
</section>
<!-- who need bloods section Ends -->
</main>
<!-- Main Ends -->
<!-- footer starts -->
<footer class="" id="footer">
<div class="container-md py-5">
<div class="row pt-5">
<!-- contact us -->
<div class="col-sm-4 p-3 mb-4">
<h1>CONTACT US</h1>
<p><i class=" fa fa-map-marker pr-3"></i><b>Headquerter : </b> Khwaja Yunus Ali Hospital, Enayetput, Sirajganj.</p>
<p><i class=" fa fa-envelope pr-2"></i><b>Email : </b><a href="mailto: [email protected]" >[email protected]</a></p>
<p><i class=" fa fa-phone pr-3"></i><b>Tel : </b><a href="tel: 01759458961" >01759458961</a></p>
</div>
<!-- services -->
<div class="col-sm-4 p-3 mb-4">
<h1>Services</h1>
<p><a href="#">Donate blood</a></p>
<p><a href="#">Request blood</a></p>
<p><a href="#">About Blood</a></p>
</div>
<!-- additional links -->
<div class="col-sm-4 p-3 mb-4">
<h1>additional links</h1>
<p><a href="#">About us</a></p>
<p><a href="#">Terms and conditions</a></p>
<p><a href="#">Privacy policy</a></p>
<p><a href="#">Contact us</a></p>
</div>
</div>
</div>
<div class="footer-end py-5">
<div class="container-md">
<div class="row flex-column-reverse flex-md-row">
<div class="col-md-4 text-center text-md-left mb-4">
© 2021 All Rights Reserved
</div>
<!-- social links -->
<div class="col-md-4 social-links text-center mb-4">
<i class=" fa fa-facebook"></i>
<i class=" fa fa-instagram"></i>
<i class=" fa fa-twitter"></i>
</div>
<div class="col-md-4 text-md-right text-center mb-4">
<p><b>Design by </b><span class=" text-red" style="cursor: pointer;"> Shubrato Debnath</span></p>
</div>
</div>
</div>
</div>
</footer>
<!-- footer Ends -->
<!-- javascript -->
<script src="vendor/js/jquery.min.js"></script>
<script src="vendor/js/popper.min.js"></script>
<script src="vendor/js/html5shiv.min.js"></script>
<script src="vendor/js/respond.min.js"></script>
<script src="vendor/js/bootstrap.min.js"></script>
<!-- animated headline js-->
<script src="vendor/js/animateHeader.js"></script>
<!-- data-aos-->
<script src="vendor/js/aos.js"></script>
<!-- owl carousel -->
<script src="vendor/js/owl.carousel.min.js"></script>
<!-- mixitup plugin for filter -->
<script src="vendor/js/mixitup.min.js"></script>
<!-- custom js -->
<script src="resources/js/main.js"></script>
</body>
</html>