-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
3260 lines (2966 loc) · 279 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
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Disaster Preparedness and Risk Reduction</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/fontAwesome.css">
<link rel="stylesheet" href="css/light-box.css">
<link rel="stylesheet" href="css/owl-carousel.css">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800" rel="stylesheet">
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body>
<header class="nav-down responsive-nav hidden-lg hidden-md">
<button type="button" id="nav-toggle" class="navbar-toggle" data-toggle="collapse" data-target="#main-nav">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!--/.navbar-header-->
<div id="main-nav" class="collapse navbar-collapse">
<nav>
<ul class="nav navbar-nav">
<li><a href="#top">Home</a></li>
<li><a href="#dashboard">Dashboard</a></li>
<li><a href="#projects">On going Work</a></li>
<li><a href="#completed">Completed Projects</a></li>
</ul>
</nav>
</div>
</header>
<!-------------------- SIDEBAR-------------------------------->
<div class="sidebar-navigation hidde-sm hidden-xs">
<div class="logo">
<a href="https://philippineredcross.github.io/FRONT-PAGE/">DMS Projects</em></a>
</div>
<nav>
<ul>
<li>
<a href="#top">
<span class="rect"></span>
<span class="circle"></span>
Home
</a>
</li>
<li>
<a href="#dashboard">
<span class="rect"></span>
<span class="circle"></span>
Dashboard
</a>
</li>
<li>
<a href="#projects">
<span class="rect"></span>
<span class="circle"></span>
On going Projects
</a>
</li>
<li>
<a href="#completed">
<span class="rect"></span>
<span class="circle"></span>
Completed Projects
</a>
</li>
</nav>
</div>
<!------------------------DESCRIPTION OF THE HEADER------------------>
<div class="slider">
<div class="Modern-Slider content-section" id="top">
<!-- Item -->
<div class="item item-1">
<div class="img-fill">
<div class="image"></div>
<div class="info">
<div>
<h1>Disaster Preparedness <br> and Risk Reduction</h1>
<p>Embracing new and emerging technologies such as geographic information systems (GIS) helps us achieve our mission to bring timely,<br> effective and compassionate humanitarian assistance to the most vulnerable without consideration of nationality, race, creed, gender, <br>social status or political belief. This site has been created by the GIS team at Philippine Red Cross and maintained by the Disaster <br>Management Service (DMS) team to provide access to some of the tools and resources we use to accomplish our work.</p>
</div>
</div>
</div>
</div>
<!-- // Item -->
</div>
</div>
<div class="page-content">
<section id="dashboard" class="content-section">
<div class="section-heading">
<h1><em>DASHBOARD OF 3W PROJECTS</em></h1>
</div>
<div class="section-content">
<div class="owl-carousel owl-theme">
<div class="item">
<div class="image">
<img src="img/dashboard.jpg">
<div class="dashboard-button button">
<a href="https://philippineredcross.github.io/3W_PRC_Projects/">View</a>
</div>
</div>
</section>
<!------------------------ON GOING PROJECTS------------------>
<section id="projects" class="content-section">
<div class="section-heading">
<h1><em>ONGOING PROJECTS</em></h1>
</div>
<div class="section-content">
<div class="tabs-content">
<div class="wrapper">
<ul class="tabs clearfix" data-tabgroup="first-tab-group">
<li><a href="#tab1" class="active">2014 - 2018</a></li>
<li><a href="#tab2">2019 - 2022</a></li>
</ul>
<section id="first-tab-group" class="tabgroup">
<div id="tab1">
<ul>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4 >Implementation of Sustainable WASH Project in Cagayan De Oro River Basin
</h4>
<span>January 25, 2018</span>
<p>Total Budget: PHP 16,334,637.00 <br> Funding Partner: Netherlands Red Cross<br> Program Links: Led by WASH (DPRR) <br>Project Result: To provide a sustainable water supply to flood resettlements areas and vulnerable communities by increasing the resilience of river catchment, water distribution network and te communities themselves to heavy rainfall, flooding and power outrage events.</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/ICZM.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Integrated Coastal Zone Management Project (ICZM)</h4>
<span>May 11, 2018</span>
<p>Total Budget: Php 30,896,930.90 <br> Funding Partner: NLRC<br> Program Links: DPRR<br>Project Result: To provide a sustainable water supply to flood resettlements areas and vulnerable communities by increasing the resilience of river catchment, water distribution network and te communities themselves to heavy rainfall, flooding and power outrage events.</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Red Ready II</h4>
<span>January 28, 2019</span>
<p>Total Budget: 8290740 (ORIGINAL BUDGET USD 160, 000) AMENDMENT (USD 275,020)<br> Funding Partner: AmCross (DMS co lead)<br> Program Links: DPRR<br>Project Result: Outcome 1: Established response teams at the chapter level.<br> Outcome 2: Improve DM Policy.<br> Outcome 3: Enhance Planning processes at NHQ and Chapter.<br> Outcome 4: Increased chapter accountability at the chapter level through improved reporting. <br>Outcome 5: NS is accountable for its own capacity enchancement; effectively documents and communicates its own capacity development plans and progress and fosters a culture of learning and knowledge sharing.</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/CBDRR_flood.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>CBDRR with Flood Resilience Measurement for Communities</h4>
<span>June 14, 2019</span>
<p>Total Budget:PHP 14,164,600.00 (CHF 267,200.00) <br> Funding Partner: IFRC<br> Program Links: DPRR<br>Project Result: <br>1. Communities improved risk awareness <br>2. Communities improved disaster preparedness and response mechanism <br>3. Communities capacity to recover from flood incidents <br>4. Communities improved capacity to support</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%; margin-bottom: 180px; ">
<div class="text-content">
<h4>Strengthening capacity for Conflict-sensitive Preparedness in Vulnerable Communties in Mindanao (Consent DRR) Phase 2</h4>
<span>December 6, 2019</span>
<p>Total Budget: EUR 978,364.73 (approx. PHP 53,810,060.15.00) <br> Funding Partner: German Red Cross <br> Program Links: DPRR<br>Project Result: <br>
Result 1: Target communities have increased knowledge and awareness about natural and human induced hazards and climate change and know the developed (or existing) community action plan.
<br> Result 2: The communities have carried out small scale mitigation measures and/or have established small scale community early warning systems, know how to maintain them and reduced the impact of natural disasters and climate change or the impact of man-made disasters.
<br> Result 3: The communities have functioning community-based committees and procedures for effective Disaster Risk Reduction and Climate Change Adaptation action in coordination with all relevant stakeholders.
<br> Result 4: The targeted schools have awareness, knowledge, functioning community-based structures and procedures for effective Disaster Risk Reduction, taking natural and human induced hazards in consideration.
<br>Result 5: The Philippine Red Cross at targeted local level has the knowledge and procedures in place (plans, protocols, training curricula) to respond to humanitarian crisis and have increased capacities in conflict-sensitive disaster preparedness approach.
<br> Result 6: Internal Displaced Persons in Lanao del Sur have improved access to safe water points, sanitation facilities and access to hygiene knowledge and appropriate hygiene materials.</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Empowering the Philippine Red Cross (PRC) communities and government institutions to consolidate and implement inclusive community based disaster risk reduction in five provinces of the Philippines (EPIC DRR) Phase 3</h4>
<span>February 4, 2020</span>
<p>Total Budget: EUR 1,416581.30 (Php 79, 210,097.75) <br> Funding Partner: German Red Cross <br> Program Links: DPRR<br>Project Result: Urban WASH-DRR Project (Sustainable and Resilient pro-poor Water Supply in Cebu and Lapu lapu)</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%; margin-bottom: 100px;">
<div class="text-content">
<h4>Responding to the Needs of the Most Vulnerable population Affected by Disasters and Conflict through Emergency Relief and Cash Assistance (Philippines)</h4>
<span>February 27, 2020</span>
<p>Total Budget: AUD 3,000,000.00 (2020- AUD 1,000,000; 2021- AUD 500,000; 2022- AUD 500,000; 2023- AUD 500,000; 2024- AUD 500,000)Amended Budget: AUD 6,100,000.00 (1) 20 March 2020 ; 1,000.000 (2) 27 March 2020; 2,000,000 (3) April 2020; 1,450,000 (4) June 2020; 1,100,000 (5) JUne 2021 550,000<br> Funding Partner: Australian Embassy (DFAT)<br> Program Links: DRCS<br>Project Result: Procurement and provision of non-food items to replace the damaged or lost household assets and provide the basic necessities of people and families affected by crisis, such as sleeping kits, hygiene kit, water containeers, tarpaulins, shelter tool kits, health kits as well as provision of emergency Cash for relief, unconditional cash grant and relief equipping. This output will target to support an indicative number of 9,000 families (45,000 individuals0 subject to changes upon recommendationof PRc and approval of DFAT. Construction and Equipping of Port Area Molecular Laboratory.</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%; ">
<div class="text-content">
<h4>Typhoon Rolly Emergency and Early Recvery Operations</h4>
<span>June 14, 2019</span>
<p>Total Budget:PHP 14,164,600.00 (CHF 267,200.00) <br> Funding Partner: IFRC<br> Program Links: DPRR<br>Project Result: <br>1. Communities improved risk awareness <br>2. Communities improved disaster preparedness and response mechanism <br>3. Communities capacity to recover from flood incidents <br>4. Communities improved capacity to support"</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Typhoon Rolly Emergency and Early Recovery Operations</h4>
<span>November 12, 2020</span>
<p>Total Budget: CHF 750,000 (Initial Response) <br> Funding Partner: IFRC (Emergency Appeal)<br> Program Links: DRCS/DREC<br>Project Result: <br>1. Communities improved risk awareness <br>2. Communities improved disaster preparedness and response mechanism <br>3. Communities capacity to recover from flood incidents <br>4. Communities improved capacity to support"</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
</ul>
</div>
<!----------------End of tab 2---------------------------------->
<div id="tab2">
<ul>
<li>
<div class="item">
<img src="img/PDBARMM.jpg" alt="" style="max-height: 20%; max-width: 20%; margin-bottom: 50px;">
<div class="text-content">
<h4>Philippine Red Cross support to reduce the impact of the COVID-19 pandemic and foster the public health and socio economic development in BARMM (PD-BARMM)</h4>
<span > January 14, 2021</span>
<p>Total Budget: Php 116,500,000 (direct cost) Contigency budget (8,000 EURO) inderect cost at the respective project agreements with SRC and GRC <br> Funding Partner: SRC/ GRC European Commission (back donor) <br> Program Links: DREC<br>Project Result: <br>Outcome 1: Health/ COVID19: Support the health system to contain the pandemic and improve access of vulnerable people through prevention, surveillance and efficient referral mechanisms (in collaboration with GRC). <br>Outcome 2: Livelihoods: Mitigate the socioeconomic impact of the pandemic and prevent impacts on the livelihoodsnofthe most vulnerable people (in collaboration with SRC). <br>Outcome 3: Participation: Improve the social cohesion and resilence in BARMM through inclusive community-based strategies (in collaboartion with SRC)</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/greening.jpg" alt="" style="max-height: 30%; max-width: 20%; margin-bottom: 30px;">
<div class="text-content">
<h4>Greening Red Cross and Red Crescent Disaster Risk Reduction: Saving Lives through Working with Nature-based Soluntions into DRR approaches at global, regional, national and community levels. (Greening DRR)</h4>
<span >July 6, 2021</span>
<p>Total Budget: USD 271, 839 (approximately PHP 13,000,000.00) <br> Funding Partner: AmCross <br> Program Links: DPRR <br>Project Result: <br>Objective 1: To enable communities and National Societies to design and implement DRR projects incorporating nature-based solutions in diverse settings. <br>Objective 2: To develop new and revise existing Ecosystem based Disaster Risk Reduction tools and guidelines based on the real time learning from the project implementation. <br> Objective 3: To promote Nature-based Solutions and disseminate lessons learned within and beyond the Red Cross Red Crescent network aimed at improving stakeholder capacity at the community, national, regional, and global levels.</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%; ">
<div class="text-content">
<h4>National Society Development</h4>
<span > 7/28/2020 DMS Memo: 2020-09-16 October 8, 2020; </span>
<p>Total Budget: USD 1,031,368 (Php 51,568,385) DMS Budget: 2,869,200.00 <br> Funding Partner: Amcross<br> Program Links: Led by PMER Component: DMS (DRCS)<br>Project Result: "Development of Emergency Needs Assessment. Writeshop for ENA Guideline-4.Conduct of Assessment Training- 5 batches</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%; ">
<div class="text-content">
<h4>Floods and Typhoon Ulysses Emergency Response in Provinces of Cagayan and Isabela</h4>
<span> February 9, 2021 DMS Memo: 2021-01-04</span>
<p>Total Budget: Php 12,150,008.00 (CHF 233,654.00) <br> Funding Partner: IFRC (Emergency Appeal) <br> Program Links: DRCS/DREC <br>Project Result: "Cash Assistance: 1500 (Cagayan-1000; Isabela-500) NFI (Full Set)- 500 families- Cagayan</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/FBF_Phase2.jpg" alt="" style="max-height: 20%; max-width: 20%; ">
<div class="text-content">
<h4>Forecast-based Financing in the Philippines - Closing the Gap between Disaster Risk Reduction and Emergency Relief (FbF) Phase 2</h4>
<span>July 31, 2020 DMS MEMO #2020-07-22</span>
<p>Total Budget: EUR 591,843.50 (PHP 32, 500,000.00) <br> Funding Partner: German Red Cross <br> Program Links: DPRR<br>Project Result: Contribute to the reduction of humanitarian consequences of extreme weather events on the affected population in high risk areas</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%; ">
<div class="text-content">
<h4>Community Readiness In Bicol (CRIB) 2</h4>
<span > Jan 15, 2021</span>
<p>Total Budget: PHP 37,988,463.12 / USD 744, 871.33 <br> Funding Partner: AmCross <br> Program Links: DPRR <br>Project Result: </p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/covid19_FCA.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Food and Cash Based Humanitarian Assisatnce to Families Affected by the Enhanced Community Quarantine due to COVID-19</h4>
<span> June 22, 2020</span>
<p>Total Budget: PHP 70,000,000.00 <br> Funding Partner: IFRC (BMZ)<br> Program Links: DRCS <br>Project Result: The primary objective is to support families whom have been affected by the national state of calamity for the COVID-19 Enhanced Quarantine situation to meet their immediate needs through the provision of multi-purpose cash grants, taking good practice to scale in a coordinated Movement response channeled through a strongly anchored local partners</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/post_haiyan.jpg" style="max-height: 20%; max-width: 20%; margin-bottom: 150px;">
<div class="text-content">
<h4>POST HAIYAN DEVELOPMENT PROJECT </h4>
<span > March 30, 2020</span>
<p>Total Budget:USD 3,046,059.00 or PHP 196, 178,478.00 <br> Funding Partner: AmCross <br> Program Links: Led by ChapDev. DPRR"<br>Project Result:"OBJECTIVE 1: Strengthened and sustained resilience in targeted communities and schools.Outcome 1.1: Communities and schools knowledge, skills, and tools necessary to prepare for and respond to disasters.Outcome 1.2: Communities and schools knowledge, skills, and tools necessary to prepare for and respond to disasters. Outcome1.3: Communities have small-scale structural measures that effectively mitigate disaster risk. Outcome 1.4: Vulnerable groups (family) in the Communities have access to cash support to mitigate the COVID 19 impact. OBJECTIVE 2: 9 PRC Chapter staff and volunteers are well trained, managed, organized, and engaged. Outcome 2.1: Red Cross Youth are well managed, organized and engaged. Outcome 2.2: RC143 are well trained, managed, organized and engaged. Outcome 2.3: RCAT are well managed, organized and engaged. OBJECTIVE 3: 9 PRC Chapters are able to deliver effective and efficient services to the most vulnerable 9 PRC Chapters have improved ability to reach entire territorial jurisdiction. Outcome 3.2: 9 PRC Chapters has well-managed and effective human resources. Outcome 3.3: 9 PRC Chapters has tools and systems to enable financial accountability and increased resource mobilization</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4> Strengthening Resilience and Gender Equality</h4>
<span > Feb 23, 2021</span>
<p>Total Budget: PHP 9,613,600.00 <br> Funding Partner: SRC <br> Program Links: (Lead:WELFARE) DPRR <br>Project Result: Overall Goal: To promote resilience and gender equality of indigenous communities in Mindanao. Outcome (Specific objective): To strengthen the livelihoods and disaster preparedness of women and indigenous peoples. Results (Outputs):R1. Improved public local capacities, built through harmonized risk management plans R2. Enhanced the technical capacity and set a local preparedness and response system R3. Strengthened the livelihood of women and indigenous peoples through climate change adaptation and disaster prevention and preparedness strategies</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4> TY Agaton Operations</h4>
<span>Aug 11, 2021</span>
<p>Total Budget: Php 11,000,000 <br> Funding Partner: IFRC (DREF)<br> Program Links: DREC <br>Project Result: 1. Communities improved risk awareness 2. Communities improved disaster preparedness and response mechanism 3. Communities capacity to recover from flood incidents 4. Communities improved capacity to support</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4> TY ODETTE (RAI) Operations</h4>
<span > Aug 11, 2021</span>
<p>Total Budget: Php 11,000,000 <br> Funding Partner: Spanish Red Cross<br> Program Links: DRCS/DREC <br>Project Result:</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>TY ODETTE (RAI) Operations </h4>
<span > Oct 29, 2019</span>
<p>Total Budget: Php 11,000,000 <br> Funding Partner: NLRC<br> Program Links: DRCS/DREC <br>Project Result: </p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>TY ODETTE (RAI) Operations</h4>
<span > Jan 31, 2020</span>
<p>Total Budget: Php 11,000,000 <br> Funding Partner: American Red Cross<br> Program Links: DRCS/DREC <br>Project Result: </p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>TY ODETTE (RAI) Operations</h4>
<span> Sep 7, 2021</span>
<p>Total Budget: Php 11,000,000 <br> Funding Partner:Canadian Red Cross<br> Program Links: DRCS <br>Project Result: </p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>TY ODETTE (RAI) Operations</h4>
<span> Aug 11, 2021</span>
<p>Total Budget: 565,602 Euro (excluding GRC PMC + Delegate costs).
<br> Funding Partner: CGRC <br> Program Links: DRCS <br>Project Result: NFI- 1500 fam Read and Play Kits- 1000 Children Hotmeals- 2 chapters MPCG- 2 ChaptersRBM- 1 training</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4> TY ODETTE (RAI) Operations</h4>
<span> May 16, 2019</span>
<p>Total Budget: Php 260,000,000
<br> Funding Partner: IFRC Appeals<br> Program Links: DRCS/DREC<br>Project Result: NFI- 1500 fam Read and Play Kits- 1000 Children Hotmeals- 2 chapters MPCG- 2 ChaptersRBM- 1 training</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Zambales Relocation Project</h4>
<span> Sep 7, 2021</span>
<p>Total Budget: Php 260,000,000
<br> Funding Partner: PHP1.2M of LGU ??? of PRC /(6,158,808.00 Hongkong Red Cross)"<br> Program Links: DREC<br>Project Result: NFI- 1500 fam Read and Play Kits- 1000 Children Hotmeals- 2 chapters MPCG- 2 ChaptersRBM- 1 training</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
<br> <br> <br>
</div>
</li>
</ul>
</div>
</div>
</section>
<!-------------------------- COMPLETED PROJECTS --------------------------------------->
<section id="completed" class="content-section">
<div class="section-heading">
<h1><em>COMPLETED PROJECTS</em></h1>
</div>
<div class="section-content">
<div class="tabs-content">
<div class="wrapper">
<ul class="tabs clearfix" data-tabgroup="second-tab-group">
<li><a href="#tab5" class="active">2008 - 2012</a></li>
<li><a href="#tab6">2013 - 2016</a></li>
<li><a href="#tab7">2017 - 2020</a></li>
<li><a href="#tab8">2021 - 2025</a></li>
</ul>
<section id="second-tab-group" class="tabgroup">
<div id="tab5">
<ul>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4> Integrated Community Disaster Preparedness Program ICDPP in 2 municipalities in Palawan, Philippines </h4>
<span > Jan 2008 - Dec 2012 </span>
<p> Total Budget: EUR 167,500 <br> Funding Partner: German Red Cross <br> Program Links: Disaster Preparedness <br> Project Result: Formation of BDAT Construction of 10 Evacuation / Multi-purpose Centers </p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4> Integrated Community Disaster Preparedness Program ICDPP in 2 municipalities in Palawan, Philippines </h4>
<span >March 2008 - April 2009 </span>
<p> Total Budget: EUR 300,000 <br> Funding Partner: German Red Cross, MOFA<br> Program Links: Disaster Preparedness <br>Project Result: DRR-CCA in Barangays and Schools</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Integrated Community Disaster Preparedness Program ICDPP in 3 municipalities in Palawan, Philippines</h4>
<span>September 2008 - December 2009</span>
<p>Total Budget: EUR 375,500 <br> Funding Partner: ECHO - German RC<br> Program Links: DPRR<br>Project Result: 1To enable local communities and institutions in the Philippines to better prepare for, mitigate and respond adequately to natural disasters</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4> Emergency Assistance for families affected by Typhoons Ketsana-Parma in Metro Manila, Philippines </h4>
<span >September 2009 - May 2010</span>
<p>Total Budget: EUR 300,000 <br> Funding Partner: German Red Cross<br> Program Links: DRCS <br>Project Result: Emergency / Response: Relief, WASH NFI for 5,500 families WASH and HP</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Emergency Assistance for families affected by Typhoon Ketsana in Metro Manila, Philippines</h4>
<span>September 2009 - December 2009</span>
<p> Total Budget: Eur 177,178 <br> Funding Partner: DRCS<br> Program Links: German Red Cross, MOFA <br>Project Result: Emergency / Response: Relief, WASHNFI for 2,500 families WASH and HP </p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4> Emergency Assistance to people affected by Typhoons Ketsana-Parma in Metro Manila, Philippines</h4>
<span> October 2009 - March 2010</span>
<p> Total Budget: EUR 186,940 <br> Funding Partner: ECHO - IFRC, German RC, Spanish RC <br> Program Links: DRCS <br>Project Result: Emergency/Response: Relief, WASHNFI (tarpaulins, hygiene kits, cleaning kits) distribution HP</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4> Recovery assistance to people affected by Typhoon Parma in Philippines</h4>
<span>October 2009 - July 2010</span>
<p> Total Budget: EUR 178,700 <br> Funding Partner: German Red Cross <br> Program Links: DREC <br>Project Result: Shelter for 100 families </p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Disaster Management Capacity Building</h4>
<span>January 2010 - June 2012 </span>
<p>Total Budget: EUR 150,000 <br> Funding Partner: German Red Cross <br> Program Links: DPRR <br>Project Result: Capacity Building in DM activities (trainings in DM, ERU, SAR, WatSan; equipage; production of manuals / SOPs; development of IEC materials; support during operations, deployment, etc.) and other PRC services (Logistics, NAV, etc.)</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Antipolo Transitional Shelter Project</h4>
<span>January 2010 - December 2011</span>
<p> Total Budget: <br> Funding Partner: IFRC <br> Program Links: DMS <br>Project Result: N1100 Unit of transitional Shelter; 17 waterpoints; construction of latrine and 2 waterholes in 6 schools ; (1534 SRK in Rizal hapter areas)</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Integrated Community Disaster Preparedness Program ICDPP in 4 provinces of Philippines</h4>
<span>May 2010 - December 2011</span>
<p>Total Budget: EUR 410,000 <br> Funding Partner: ECHO - Spanish Red Cross, German Red Cross <br> Program Links: DPRR <br>Project Result: To increase resilience to and reduce vulnerability from natural disasters in local communities and institutions</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Community-based Disaster Risk Management Project in Ketsana affected areas</h4>
<span>July 2010 - September 2011</span>
<p>Total Budget: <br> Funding Partner: Australian Red Cross <br> Program Links: DPRR <br>Project Result: </p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Recovery Assistance to vulnerable people including indigenous communities affected by Typhoons Ketsana-Parma in the Philippines</h4>
<span>September 2010 - June 2011</span>
<p>Total Budget:EUR 390,000 <br> Funding Partner: ECHO - Spanish Red Cross, German Red Cross <br> Program Links: DREC <br>Project Result: Emergency/Early Recovery: Shelter, Rehab, WASH, Livelihood</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Disaster Preparedness in Schools in Pangasinan, La Union, Benguet</h4>
<span>September 2010 - June 2012</span>
<p>Total Budget: EUR 100,000<br> Funding Partner: German Red Cross <br> Program Links: DPRR <br>Project Result: Increased resilience and reduce vulnerability in targeted schools through support to strategies that enable them to better prepare for, mitigate and respond adequately to natural disasters</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Proyectos Comprehensive program for natural disaster prevention, mitigation and preparedness in Philippine communities and institutions</h4>
<span>October 2010 - February 2012</span>
<p> Total Budget: PRoyectos: 300,000 euro (P16,500,000.00)<br> Funding Partner: Spanish Red Cross <br> Program Links: DPRR <br>Project Result: Strengthen community and local institutions to improve their prevention and management mechanism to natural disasters in the Bicol region </p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4> Emergency Assistance to people by Typhoon Megi in the Philippines</h4>
<span>December 2010 - June 2011</span>
<p>Total Budget: EUR 570,120<br> Funding Partner: ECHO - Spanish Red Cross, German Red Cross <br> Program Links: DRCS <br>Project Result: Emergency: Relief, Shelter, Rehab Shelter Repair Kit (Type I) Core Shelter (Type II) NFI</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Partners for Resilience 1</h4>
<span>January 2011 - December 2015 </span>
<p>Total Budget: Php 65,501,748.00<br> Funding Partner: Netherlands Red Cross <br> Program Links: DPRR <br>Project Result: Impact of natural hazards on livelihoods of vulnerable communities is reduced.Strategic outcome 1: Developing Community Resilience Direct Poverty Alleviation Communities Strategic Outcome 2: Strenghtening Civil Society/ies Strategic 3: Policy Dialogue</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Community Based Disaster Risk Reduction Management</h4>
<span>April 2011 - April 2013</span>
<p>Total Budget: PHP7,200,000 <br> Funding Partner: Finnish Red Cross <br> Program Links: DPRR <br>Project Result: To increase safety and resilience of targeted communities to disasters</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/Strengthening_prc.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Strengthening the Disaster Response Capacity of the PRC (Stockpiling Grant 59675)</h4>
<span>June 2011 - December 2012</span>
<p>Total Budget: <br> Funding Partner: Australian AID <br> Program Links: DPRR <br>Project Result: </p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Urban Disaster Risk Reduction in Marikina City – Pilot project</h4>
<span>July 2011 - December 2011</span>
<p>Total Budget: P3,252,321.00<br> Funding Partner: Norwegian Red Cross <br> Program Links: DPRR <br>Project Result: Communities are able to effectively prepare, respond and recover from disaster.</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4> Strengthening the Disaster Response Capacity of the PRC (Replenishing Grant 61127)</h4>
<span>October 2011 - May 2012 </span>
<p>Total Budget: PRoyectos: 300,000 euro (P16,500,000.00)<br> Funding Partner: Australian AID <br> Program Links: DRCS <br>Project Result:</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Emergency assistance to people severely affected by Tropical Storm Washi in Mindanao region in the Philippines</h4>
<span>December 2011 - April 2012</span>
<p>Total Budget: EUR 366,600<br> Funding Partner: German Red Cross, MOFA <br> Program Links: DRCS <br>Project Result: Emergency: Relief, WASh NFI for 4,000 families Student Hygiene Kits for 6,000 students Shelter Repair Toolkits for 600 HH</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Emergency and Assistance to people by Typhoons Nesat-Nalgae in northern provinces of the Philippines</h4>
<span>December 2011 - May 2012</span>
<p>Total Budget: EUR 700,000<br> Funding Partner: ECHO - Spanish Red Cross, German Red Cross <br> Program Links: DRCS <br>Project Result: Emergency: Relief, WASH, DRR WASH (PHAST)NFI Distribution Rehab DRR</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4>Humanitarian Aid to people affected by Tropical Storm Washi in Mindanao, Philippines</h4>
<span>December 2011 - May 2012</span>
<p>Total Budget: EUR 1,025,835<br> Funding Partner: ECHO - IFRC, German Red Cross <br> Program Links: DRCS <br>Project Result: Emergency: Relief, WASH Fi for 11,500 families Hygiene Kits for 5,000 families</p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>
<li>
<div class="item">
<img src="img/dms.jpg" alt="" style="max-height: 20%; max-width: 20%;">
<div class="text-content">
<h4> Humanitarian Intervention for Effects of Tropical Storm Washi – Sendong Grant No. 61127</h4>
<span>December 2011 - December 2012</span>
<p>Total Budget: AUD 800,000<br> Funding Partner: Australian AID <br> Program Links: DRCS <br>Project Result: </p>
<div class="dropdown">
<button class="dropbtn">Continue</button>
<div class="dropdown-content">
<a href="#">Snapshot</a>
<a href="#">Dashboard</a>
</div>
</div>
</li>