-
Notifications
You must be signed in to change notification settings - Fork 76
/
index.html
597 lines (542 loc) · 19.6 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Helping Hand</title>
<link rel="icon" href="images/hand.png" />
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Montserrat|Ubuntu"
rel="stylesheet"
/>
<!-- Font Awesome cdn -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- Bootstrap -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"
/>
<script
src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"
></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"
></script>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<!--External CSS-->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!--***** Back to top button *****-->
<a title="scroll to top" id="button"></a>
<!--***** Nav Bar *****-->
<nav class="navbar navbar-expand-lg">
<a href="#title"
><img src="images/logo.png" alt="HelpingHand_Logo" class="navbarlogo"
/></a>
<a class="navbar-brand" href="#">Helping Hand</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon">
<i class="fas fa-bars"></i>
</span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link px-2" href="#title"
><i class="fas fa-home"></i> Home</a
>
</li>
<li class="nav-item">
<a class="nav-link px-2" href="#features"
><i class="fas fa-bullseye"></i> Mission</a
>
</li>
<li class="nav-item">
<a class="nav-link px-2" href="#faq"
><i class="fas fa-question"></i> FAQ</a
>
</li>
<li class="nav-item">
<a class="nav-link px-2" href="#contact"
><i class="fas fa-envelope"></i> Contact</a
>
</li>
</ul>
</div>
</nav>
<!--***** Title *****-->
<section class="coloured-section" id="title">
<div class="container-fluid">
<div class="row">
<div class="col-lg-6">
<h1 class="big-heading">
“We must give more in order to get more. It is the generous giving
of ourselves that produces the generous harvest.”
</h1>
<div>
<form>
<button id="rzp-button1">
<i class="fas fa-donate"></i> Donate here
</button>
<script src="https://checkout.razorpay.com/v1/checkout.js"></script>
<script>
var options = {
key: "rzp_test_aIfnpuWEudWnID", // Enter the Key ID generated from the Dashboard
amount: "5000", // Amount is in currency subunits. Default currency is INR. Hence, 50000 refers to 50000 paise
currency: "INR",
name: "Soumita Biswas",
description: "Please lend a Helping hand",
handler: function (response) {
if (
typeof response.razorpay_payment_id == "undefined" ||
response.razorpay_payment_id < 1
) {
swal({
title: "Please try again later!",
icon: "error",
button: "Close",
});
} else {
swal({
title: "Thank You!",
icon: "success",
button: "Close",
});
}
},
theme: {
color: "#3399cc",
},
};
var rzp1 = new Razorpay(options);
document.getElementById("rzp-button1").onclick = function (
e
) {
rzp1.open();
e.preventDefault();
};
</script>
</form>
</div>
</div>
<div class="col-lg-6">
<img
class="title-image"
src="images/child-color.jpg"
alt="child-image"
/>
<img
class="title-image1"
src="images/child2.jpg"
alt="child-image"
/>
</div>
</div>
</div>
</section>
<!--***** Features *****-->
<section id="features" class="features">
<div class="secf">
<h2>Our Mission</h2>
</div>
<div class="cards">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<br />
<br />
<i class="icon fas fa-check-circle fa-4x" id="icon1"></i>
<h3 class="feature-title">Education.</h3>
<br />
<p>
We work to ensure children are educated for life through
collective efforts.
</p>
</div>
<div class="flip-card-back">
<br />
<img
src="images/Card-1.png"
alt="rural schools"
width="90%"
height="90%"
/>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<br />
<br />
<i class="icon fas fa-bullseye fa-4x" id="icon2"></i>
<h3 class="feature-title">Nutrition.</h3>
<br />
<p>
We work to address the causes of malnutrition with special focus
on children below 5 years
</p>
</div>
<div class="flip-card-back">
<br />
<img
src="images/Card-2.jpg"
alt="child"
width="90%"
height="90%"
/>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<br />
<br />
<i class="icon fas fa-heart fa-4x" id="icon3"></i>
<h3 class="feature-title">Livelihood.</h3>
<br />
<p>
Our livelihood interventions enable families to enhance income
and provide better for their children.
</p>
</div>
<div class="flip-card-back">
<br />
<img
src="images/Card-3.jpg"
alt="childrens"
width="90%"
height="90%"
/>
</div>
</div>
</div>
</div>
</section>
<!-- **** FAQ Section **** -->
<section id="faq">
<div class="secf">
<h2>FAQ</h2>
</div>
<div class="container bg-none">
<div
class="accordion accordion-flush faq-container"
id="accordionFlushExample"
>
<div class="accordion-item bg-transparent">
<h2 class="accordion-header" id="flush-headingOne">
<button
class="accordion-button collapsed bg-transparent text-light"
type="button"
data-bs-toggle="collapse"
data-bs-target="#flush-collapseOne"
aria-expanded="false"
aria-controls="flush-collapseOne"
>
Is my payment/transaction secured when I’m donating?
</button>
</h2>
<div
id="flush-collapseOne"
class="accordion-collapse collapse text-light"
aria-labelledby="flush-headingOne"
data-bs-parent="#accordionFlushExample"
>
<div class="accordion-body answer answer">
All Payments are secured via 128-bit encryption. Helping Hand
assures you that the information you provide is completely
protected and that your donations are safe. Our secure-server
software encrypts all your personal information including name,
contact number, email ID and address. If you wish to maintain
anonymity, you can click on ‘Anonymous’ while donating.
</div>
</div>
</div>
<div class="accordion-item bg-transparent">
<h2 class="accordion-header" id="flush-headingTwo">
<button
class="accordion-button collapsed bg-transparent text-light"
type="button"
data-bs-toggle="collapse"
data-bs-target="#flush-collapseTwo"
aria-expanded="false"
aria-controls="flush-collapseTwo"
>
How are the Children verified?
</button>
</h2>
<div
id="flush-collapseTwo"
class="accordion-collapse collapse"
aria-labelledby="flush-headingTwo"
data-bs-parent="#accordionFlushExample"
>
<div class="accordion-body answer">
We, are extremely particular about the authenticity of a
campaign. In order to ensure it is genuine, we follow a strict
3-step process before listing any fundraiser. The rigorous
verification process involves submission of legal identity
proofs and medical documents. Furthermore, the specifics of each
case are verified by the concerned hospital’s medical team. All
fundraisers are ‘Assured’ and they protect the donor’s interest.
</div>
</div>
</div>
<div class="accordion-item bg-transparent">
<h2 class="accordion-header" id="flush-headingThree">
<button
class="accordion-button collapsed bg-transparent text-light"
type="button"
data-bs-toggle="collapse"
data-bs-target="#flush-collapseThree"
aria-expanded="false"
aria-controls="flush-collapseThree"
>
How are my donations being utilized?
</button>
</h2>
<div
id="flush-collapseThree"
class="accordion-collapse collapse"
aria-labelledby="flush-headingThree"
data-bs-parent="#accordionFlushExample"
>
<div class="accordion-body answer">
There are many campaigns in urgent need of funds. Every month,
your donation will be transferred to a hospital, school,
orphanage for one such campaign to aid a child’s treatment and
education.
</div>
</div>
</div>
<div class="accordion-item bg-transparent">
<h2 class="accordion-header" id="flush-headingFour">
<button
class="accordion-button collapsed bg-transparent text-light"
type="button"
data-bs-toggle="collapse"
data-bs-target="#flush-collapseFour"
aria-expanded="false"
aria-controls="flush-collapseFour"
>
Whom should I contact if I have a question or problem in making
an online donation?
</button>
</h2>
<div
id="flush-collapseFour"
class="accordion-collapse collapse"
aria-labelledby="flush-headingFour"
data-bs-parent="#accordionFlushExample"
>
<div class="accordion-body answer">
In case when you are stuck at any step while donating or you
have any other question , you can directly contact on the given
number: 123-90898.
</div>
</div>
</div>
<div class="accordion-item bg-transparent">
<h2 class="accordion-header" id="flush-headingFive">
<button
class="accordion-button collapsed bg-transparent text-light"
type="button"
data-bs-toggle="collapse"
data-bs-target="#flush-collapseFive"
aria-expanded="false"
aria-controls="flush-collapseFive"
>
What does donating online offer me?
</button>
</h2>
<div
id="flush-collapseFive"
class="accordion-collapse collapse"
aria-labelledby="flush-headingFive"
data-bs-parent="#accordionFlushExample"
>
<div class="accordion-body answer">
It provides an easy, convenient way to donate to our mission,
and reduces our fundraising costs. Plus, by donating with your
credit card, you can use your credit card statement for
taxes/receipts, earn credit card rewards, save time and reduce
postage costs.
</div>
</div>
</div>
</div>
</div>
</section>
<!--***** Contact Us *****-->
<section id="contact">
<div class="contact">
<h2>Contact Us</h2>
<p>HAVE SOME QUESTIONS?</p>
<form class="form" id="myForm" enctype="multipart/form-data">
<div class="contbutton">
<label for="First">
<input type="text" placeholder="First Name" id="First" /> </label
><br />
<label for="Last">
<input type="text" placeholder="Last Name" /> </label
><br />
<label for="email">
<input type="email" placeholder="What's your mail?" /> </label
><br />
<label for="problem">
<textarea
rows="5"
cols="39"
class="question"
placeholder="Your questions..."
id="problem"
/></textarea> </label
><br />
<div class="subbtn">
<button type="submit">Send Message</button>
</div>
</div>
</form>
<div class="avatar"></div>
</div>
</section>
<!--************* Footer ********** -->
<footer id="dk-footer">
<div class="container">
<div class="sec Aboutus">
<h2>Helping Hand</h2>
<span class="animate-border border-black"></span>
<div class="footer-detail">
<p>
“None of us, including me, ever do great things. But we can all do
small things, with great love, and together we can do something
wonderful. Just together.”
</p>
</div>
</div>
<!-- End Col -->
<div class="sec QuickLinks">
<h2>About Us</h2>
<u1>
<li><a href="#title">Home</a></li>
<li><a href="#features">Mission</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#contact">Contact</a></li>
</u1>
</div>
<!-- End col -->
<div class="sec section-heading">
<h2>Contact Us</h2>
<p>Having some questions? Don’t miss your problem</p>
<form action="#">
<div class="sec form-row">
<div class="col dk-footer-form">
<input
type="email"
class="form-control"
placeholder="Email Address"
/>
<button
type="submit"
id="gmailus"
value="mailto: sb2253@gmail.com"
>
<i class="fa fa-send"></i>
</button>
</div>
</div>
</form>
</div>
<div class="sec">
<h2>Follow Us</h2>
<ul class="sci">
<li>
<a
href="https://www.facebook.com/soumita.biswas.961/"
target="_blank"
><i class="fa fa-facebook-official" aria-hidden="true"></i
></a>
</li>
<li>
<a href="https://www.instagram.com/_.soumita._/" target="_blank"
><i class="fa fa-instagram" aria-hidden="true"></i
></a>
</li>
<li>
<a
href="https://www.linkedin.com/in/soumita-biswas-88b0941ab/"
target="_blank"
><i class="fa fa-linkedin" aria-hidden="true"></i
></a>
</li>
<li>
<a href="mailto: sb2253@gmail.com" target="_blank"
><i class="fa fa-envelope" aria-hidden="true"></i
></a>
</li>
</ul>
</div>
</div>
<!-- End Contact Container -->
<div class="copyrightText">
<p class="p1">“For it is in giving that we receive.”</p>
<p class="p2">
Copyright ©
<script>
document.write(new Date().getFullYear());
</script>
|| Helping Hand. All rights reserved
</p>
</div>
</footer>
<!-- Javascript -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<!-- external js file-->
<script src="app.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"
></script>
</body>
</html>