CINXE.COM
Donate to WHO
<!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="theme-color" content="#6d9aea"> <meta property="og:title" content="Donate to WHO’s Emergency Response" /> <meta property="og:image" content="https://donate.who.foundation/uploads/2024/07/donate-who-foundation-landing-image.jpg" /> <meta property="og:image:secure_url" content="https://donate.who.foundation/uploads/2024/07/donate-who-foundation-landing-image.jpg" /> <meta property="og:image:alt" content="WHO - Foundation" /> <meta property='og:description' content='Your donation provides life-saving healthcare for people in emergencies'/> <meta property='og:url' content='https://donate.who.foundation/'/> <title>Donate to WHO</title> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//cdn.jsdelivr.net' /> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel='dns-prefetch' href='//cdnjs.cloudflare.com' /> <link rel="alternate" type="application/rss+xml" title="Donate to WHO » Feed" href="https://donate.who.foundation/feed/" /> <link rel="alternate" type="application/rss+xml" title="Donate to WHO » Comments Feed" href="https://donate.who.foundation/comments/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/donate.who.foundation\/wordpress\/wp-includes\/js\/wp-emoji.js?ver=6.5.5","twemoji":"https:\/\/donate.who.foundation\/wordpress\/wp-includes\/js\/twemoji.js?ver=6.5.5"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://donate.who.foundation/wordpress/wp-includes/css/dist/block-library/style.css?ver=6.5.5' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css' type='text/css'> body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} .wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} .wp-block-pullquote{font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='cookie-law-info-css' href='https://donate.who.foundation/plugins/webtoffee-gdpr-cookie-consent/public/css/cookie-law-info-public.css?ver=2.6.0' type='text/css' media='all' /> <link rel='stylesheet' id='cookie-law-info-gdpr-css' href='https://donate.who.foundation/plugins/webtoffee-gdpr-cookie-consent/public/css/cookie-law-info-gdpr.css?ver=2.6.0' type='text/css' media='all' /> <style id='cookie-law-info-gdpr-inline-css' type='text/css'> .cli-modal-content, .cli-tab-content { background-color: #ffffff; }.cli-privacy-content-text, .cli-modal .cli-modal-dialog, .cli-tab-container p, a.cli-privacy-readmore { color: #000000; }.cli-tab-header { background-color: #f2f2f2; }.cli-tab-header, .cli-tab-header a.cli-nav-link,span.cli-necessary-caption,.cli-switch .cli-slider:after { color: #000000; }.cli-switch .cli-slider:before { background-color: #ffffff; }.cli-switch input:checked + .cli-slider:before { background-color: #ffffff; }.cli-switch .cli-slider { background-color: #e3e1e8; }.cli-switch input:checked + .cli-slider { background-color: #28a745; }.cli-modal-close svg { fill: #000000; }.cli-tab-footer .wt-cli-privacy-accept-all-btn { background-color: #00acad; color: #ffffff}.cli-tab-footer .wt-cli-privacy-accept-btn { background-color: #00acad; color: #ffffff}.cli-tab-header a:before{ border-right: 1px solid #000000; border-bottom: 1px solid #000000; } </style> <link rel='stylesheet' id='bootstrap-css' href='https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css?ver=8.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='figtree-css' href='https://fonts.googleapis.com/css2?family=Figtree%3Aital%2Cwght%400%2C300..900%3B1%2C300..900&display=swap&ver=8.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='font_awesome-css' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css?ver=8.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='whostyle-css' href='https://donate.who.foundation/themes/whofcampaign/assets/css/style.css?ver=1.0' type='text/css' media='all' /> <script type="text/javascript" src="https://donate.who.foundation/wordpress/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://donate.who.foundation/wordpress/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" id="cookie-law-info-js-extra"> /* <![CDATA[ */ var Cli_Data = {"nn_cookie_ids":["fundraiseup_session","CookieLawInfoConsent","wpEmojiSettingsSupports","_ga_*","_ga","_gcl_au","fundraiseup_func","fundraiseup_stat","fundraiseup_cid"],"non_necessary_cookies":{"necessary":["fundraiseup_session","CookieLawInfoConsent","cookielawinfo-checkbox-advertisement","wpEmojiSettingsSupports","fundraiseup_cid"],"functional":["fundraiseup_func"],"analytics":["_ga_*","_ga","_gcl_au","fundraiseup_stat"]},"cookielist":{"necessary":{"id":2,"status":true,"priority":0,"title":"Necessary","strict":true,"default_state":false,"ccpa_optout":false,"loadonstart":false},"functional":{"id":3,"status":true,"priority":5,"title":"Functional","strict":false,"default_state":false,"ccpa_optout":false,"loadonstart":false},"analytics":{"id":5,"status":true,"priority":3,"title":"Analytics","strict":false,"default_state":false,"ccpa_optout":false,"loadonstart":false},"advertisement":{"id":6,"status":true,"priority":2,"title":"Advertisement","strict":false,"default_state":false,"ccpa_optout":false,"loadonstart":false}},"ajax_url":"https:\/\/donate.who.foundation\/wordpress\/wp-admin\/admin-ajax.php","current_lang":"en","security":"5bb60a1a69","eu_countries":["GB"],"geoIP":"disabled","use_custom_geolocation_api":"","custom_geolocation_api":"https:\/\/geoip.cookieyes.com\/geoip\/checker\/result.php","consentVersion":"1","strictlyEnabled":["necessary","obligatoire"],"cookieDomain":"","privacy_length":"250","ccpaEnabled":"","ccpaRegionBased":"","ccpaBarEnabled":"","ccpaType":"gdpr","triggerDomRefresh":"","secure_cookies":""}; var log_object = {"ajax_url":"https:\/\/donate.who.foundation\/wordpress\/wp-admin\/admin-ajax.php"}; /* ]]> */ </script> <script type="text/javascript" src="https://donate.who.foundation/plugins/webtoffee-gdpr-cookie-consent/public/js/cookie-law-info-public.js?ver=2.6.0" id="cookie-law-info-js"></script> <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js?ver=3.6.0" id="bootstrap_js-js"></script> <script type="text/javascript" src="//cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js?ver=5.0.2" id="boostrapbundle-js"></script> <link rel="https://api.w.org/" href="https://donate.who.foundation/wp-json/" /><link rel="alternate" type="application/json" href="https://donate.who.foundation/wp-json/wp/v2/pages/7" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://donate.who.foundation/wordpress/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.5.5" /> <link rel="canonical" href="https://donate.who.foundation/" /> <link rel='shortlink' href='https://donate.who.foundation/' /> <link rel="alternate" type="application/json+oembed" href="https://donate.who.foundation/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fdonate.who.foundation%2F" /> <link rel="alternate" type="text/xml+oembed" href="https://donate.who.foundation/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fdonate.who.foundation%2F&format=xml" /> <link rel="icon" href="https://donate.who.foundation/uploads/2024/06/cropped-who-fav-icon-32x32.png" sizes="32x32" /> <link rel="icon" href="https://donate.who.foundation/uploads/2024/06/cropped-who-fav-icon-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://donate.who.foundation/uploads/2024/06/cropped-who-fav-icon-180x180.png" /> <meta name="msapplication-TileImage" content="https://donate.who.foundation/uploads/2024/06/cropped-who-fav-icon-270x270.png" /> <!-- Fundraise Up: the new standard for online giving --> <script>(function(w,d,s,n,a){if(!w[n]){var l='call,catch,on,once,set,then,track' .split(','),i,o=function(n){return'function'==typeof n?o.l.push([arguments])&&o :function(){return o.l.push([n,arguments])&&o}},t=d.getElementsByTagName(s)[0], j=d.createElement(s);j.async=!0;j.src='https://cdn.fundraiseup.com/widget/'+a+''; t.parentNode.insertBefore(j,t);o.s=Date.now();o.v=4;o.h=w.location.href;o.l=[]; for(i=0;i<7;i++)o[l[i]]=o(l[i]);w[n]=o} })(window,document,'script','FundraiseUp','AMEEWKFZ');</script> <!-- End Fundraise Up --> <!-- Google Tag Manager --> <script type="text/plain" data-cli-class="cli-blocker-script" data-cli-label="Google Tag Manager" data-cli-script-type="analytics" data-cli-block="true" data-cli-block-if-ccpa-optout="false" data-cli-element-position="head">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-5KWXWFV8');</script> <!-- End Google Tag Manager --> </head> <body class="home page-template page-template-general_page_template page-template-general_page_template-php page page-id-7"> <!-- Google Tag Manager (noscript) --> <noscript><iframe src=" https://www.googletagmanager.com/ns.html?id=GTM-5KWXWFV8" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <header> <!-- <nav role="navigation"> </nav> --> <nav class="navbar navbar-default"> <div class="container"> <div class="nav-header"> <div class="row"> <div class="logos d-inline-flex py-2"> <a href="https://who.foundation/"> <img class="top-logo header-logo1" src="https://donate.who.foundation/themes/whofcampaign/assets/other-assets/images/WHOF-new-logo.png ?>" alt="whof-logo" > </a> <p class="logo-text pt-3">in support of</p> <a href="https://www.who.int/" target="_blank"> <img class="top-logo header-logo2" src="https://donate.who.foundation/themes/whofcampaign/assets/other-assets/images/WHO-logo.png ?>" alt="whof-logo" > </a> </div> </div> </div> </div> </nav> </header> <main role="main"> <div class="banner-home"> <div class="hero-banner desktop-banner" style="background-image:url('https://donate.who.foundation/uploads/2024/07/donate-who-foundation-landing-image.jpg');"> <div class="container"> <div class="row"> <div class="col-md-7 col-lg-8 col-sm-6"> <div class="text-hero-banner"> <h1 class="hero-banner-content">Your donation provides life-saving healthcare for people in emergencies </h1> </div> </div> <div class="col-md-5 col-lg-4 desktop-fundraise"> <div class="hero-banner-fundraise"> <a href="#XJDQKEFT" style="display: none"></a> </div> </div> </div> </div> </div> </div> <div class="container"> <div class="row"> <div class="full-width-text"> <h4><span style="color: #49525c;">Your support will help save millions of lives and fuel hope.</span></h4> </div> </div> </div> <div class="spacing-top"> <div class="image-and-text" style="background-color: ;"> <div class="container"> <div class="row"> <div class="col-md-6 col-lg-6 mobile-col-gap"> <img src="https://donate.who.foundation/uploads/2024/11/Support-the-most-vulnerable.jpg" alt="who-image" class="col-image"> </div> <div class="col-md-6 col-lg-6"> <div class="pt-4 px-3"> <h2 style="color: #49525c;">Support the most vulnerable</h2> <p> </p> <h5>Every humanitarian crisis is a health crisis. In an emergency, people are at increased risk of death, severe injury, trauma and disease outbreaks; rapid access to health-care services can be the difference between life and death.</h5> <p> </p> <p>Your support today means the WHO can increase the number of vaccines delivered to priority countries; provide access to lifesaving supplies, health services to millions of women and children in humanitarian settings, support WHO in educating and employing millions of health workers; and help countries or eliminate malaria, mother-to-child HIV transmission and other diseases.</p> <p>In the heart of crisis, conflict, natural disasters and polarized worldviews, we see stories of resilience and hope. We see people come together to face adversity and divisiveness, through shared values of solidarity and empathy.</p> <p>Your support empowers the WHO to deliver life-saving aid, bring comfort to the suffering, and rebuild shattered lives.</p> <div class="hero-button pt-5"> <a href="https://donate.who.foundation/" class="btn custom-grey-btn" role="button" aria-disabled="true"> Donate now</a> </div> </div> </div> </div> </div> </div> </div> <div class="spacing-top"> <div class="image-and-text" style="background-color:#f4fdff ;"> <div class="container"> <div class="row"> <div class="col-md-6 col-lg-6 mobile-col-gap"> <div class="pt-4 px-3"> <h2 style="color: #49525c;">WHO is staying and delivering in emergencies</h2> <p> </p> <h5>WHO’s teams are on the ground in the occupied Palestinian territories, reaching over 350,000 people a week through a network of partner organizations delivering thousands of tonnes health supplies. In Lebanon, where the current escalation of conflict has displaced over 1 million people, most of whom are women, children and elderly, WHO has mobilized supplies for 100,000 people; is coordinating the dispatch of emergency medical teams; and is training surgeons to treat trauma-related injuries.</h5> <p> </p> <p>In Sudan where the humanitarian situation remains critical, WHO emergency health supplies for 3.5 million people, including life-saving nutritional aid for those suffering the complications of severe malnutrition. In the absence of functioning health services, WHO’s vaccine drives are protecting millions of children against measles, rubella and cholera.</p> <p>Since the mpox disease outbreak on the African continent has been declared a public health emergency of international concern, the WHO has issued an emergency approval for the first ever vaccine against the disease in September. Since then more than 19,000 people have been vaccinated in the Democratic Republic of Congo (DRC) alone. Through expert guidance, training, and access to diagnostics, WHO’s emergency coordination units are working tirelessly to help countries to contain the outbreaks and to prevent further global spread of the disease.</p> <p>Your support today means that the critically ill can get treatment and access to lifesaving supplies.</p> <p><strong>Take Action Today.</strong></p> <div class="hero-button pt-5"> <a href="https://donate.who.foundation/" class="btn custom-grey-btn" role="button" aria-disabled="true"> Donate now</a> </div> </div> </div> <div class="col-md-6 col-lg-6"> <div class="px-3"> <img src="https://donate.who.foundation/uploads/2024/11/WHO-is-staying-and-delivering-in-emergencies_2.png" alt="who-image" class="col-image"> </div> </div> </div> </div> </div> </div> <div class="container"> <div class="row"> <div class="full-width-text"> <h4><span style="color: #49525c;">Support WHO’s work in Emergencies</span></h4> </div> </div> </div> <div class="spacing-top"> <div class="image-and-text" style="background-color: ;"> <div class="container"> <div class="row"> <div class="col-md-6 col-lg-6 mobile-col-gap"> <img src="https://donate.who.foundation/uploads/2024/11/GAZA-Emergencies-Appeal.png" alt="who-image" class="col-image"> </div> <div class="col-md-6 col-lg-6"> <div class="pt-4 px-3"> <h2 style="color: #49525c;">Help the people of Gaza and Lebanon</h2> <p> </p> <h5>Since 7 October 2023, the escalating crisis in the occupied Palestinian territory has caused large numbers of civilian deaths and injuries.</h5> <p> </p> <p>In the Gaza Strip, the lack of medical supplies, food, water and fuel have virtually depleted an already under-resourced health system. Hospitals have been operating far beyond capacity due to rising numbers of patients as well as displaced civilians seeking shelter. The provision of essential health services – from maternal and newborn care to treatment for chronic conditions – has been severely compromised, due to the lack of access and hostilities near hospitals.</p> <p>The situation has also rapidly escalated in Lebanon, where the death toll is rising, more than 1 million people have been displaced and hospitals are overwhelmed with the influx of injured patients.</p> <p>Your support will help the WHO provide essential trauma emergency supply kits, Non Communicable Disease, Severe Acute Malnutrition and Paediatric kits, in addition to critical medications and supplies that are needed to reach the most vulnerable, most of whom are women and children.</p> <p>The WHO continue to support patient transfers, deploying emergency medical teams and field hospitals, deliverable medical suppliers to health facilities and bringing mental health services in a coordinated response. The needs are immense and the WHO cannot do it alone. Help us support this extensive response to ongoing crisis in Gaza and Lebanon.</p> <p><strong>Take action.</strong></p> <div class="hero-button pt-5"> <a href="https://donate.who.foundation/gaza/" class="btn custom-grey-btn" role="button" aria-disabled="true"> Donate now</a> </div> </div> </div> </div> </div> </div> </div> <div class="spacing-top"> <div class="image-and-text" style="background-color:#f4fdff ;"> <div class="container"> <div class="row"> <div class="col-md-6 col-lg-6 mobile-col-gap"> <div class="pt-4 px-3"> <h2 style="color: #49525c;">Help the people of Ukraine</h2> <p> </p> <h5>In Ukraine, 14.6 million people are in need of humanitarian assistance, of which 7.8 million people are in need of health assistance. 9.6 million people in Ukraine are estimated to be at risk of or living with a mental health condition, and 84% of all deaths are caused by noncommunicable diseases (NCDs).</h5> <p> </p> <p>The WHO is delivering specialized medical supplies, coordinating the deployment of medical teams and providing much-needed support on urgent health needs, mental health, rehabilitation. In 2023 alone, the WHO has supported 7 million and delivered more than 2000 metric tonnes of essential medical and lifesaving supplies.</p> <p>It is imperative to ensure that life-saving medical supplies – including oxygen – reach those who need them. WHO is coordinating nearly 200 health partners to deliver various health services across the country, reaching millions prioritizing the needs of the most vulnerable, including individuals in remote areas and on the frontlines, and addressing the compounded difficulties brought on by the winter and energy crisis.</p> <p>Your support today means that the WHO can continue to provide life-saving trauma and emergency health care to the most vulnerable populations and communities affected by the war.</p> <p><strong>Take Action.</strong></p> <div class="hero-button pt-5"> <a href="https://donate.who.foundation/ukraine/" class="btn custom-grey-btn" role="button" aria-disabled="true"> Donate now</a> </div> </div> </div> <div class="col-md-6 col-lg-6"> <div class="px-3"> <img src="https://donate.who.foundation/uploads/2024/11/Ukraine-Emergencies-Appeal.png" alt="who-image" class="col-image"> </div> </div> </div> </div> </div> </div> <div class="spacing-top"> <div class="image-and-text" style="background-color: ;"> <div class="container"> <div class="row"> <div class="col-md-6 col-lg-6 mobile-col-gap"> <img src="https://donate.who.foundation/uploads/2024/11/Sudan-Emergencies-Appeal.png" alt="who-image" class="col-image"> </div> <div class="col-md-6 col-lg-6"> <div class="pt-4 px-3"> <h2 style="color: #49525c;">Help the people of Sudan</h2> <p> </p> <h5>The war that has been raging in Sudan for over eight months has had a devastating impact on the lives, livelihoods, and health of millions of people. A health system already struggling due to structural weaknesses, violence, disease outbreaks, and hunger is now buckling under the enormous pressure caused by the war and the huge population displacements it has caused.</h5> <p> </p> <p>The health of 14.7 million people hangs in the balance in the face of mass displacement, injuries, hunger and floods. Sudan is also facing outbreaks of measles, malaria, dengue fever, cholera, and other water- and vector-borne and vaccine preventable diseases, compounded by the health risks associated with seasonal rains, poor water quality, poor hygiene and waste management.</p> <p>More than 3.1 million people are estimated to be at risk of cholera in Sudan between July and December 2023. About 70% of hospitals in conflict-affected states are non-functional, while functioning hospitals and clinics in more stable states are overwhelmed.</p> <p>WHO is targeting 14.7 million people for health assistance distributing emergency medical supplies, including Interagency Emergency Health Kits (IEHKs), trauma kits, cholera kits, non-communicable disease kits, and kits for the management of severe acute malnutrition in priority areas of the country. With your support the WHO can continue to improve shelter conditions, nutrition, and water, sanitation, and hygiene (WASH) practices. The WHO can continue to support treatment centres and invest in diagnostic testing, vaccination campaigns, mass drug administration, and vector control measures to fight disease outbreaks.</p> <p><strong>Take Action. Stand with humanity today.</strong></p> <div class="hero-button pt-5"> <a href="https://donate.who.foundation/sudan/" class="btn custom-grey-btn" role="button" aria-disabled="true"> Donate now</a> </div> </div> </div> </div> </div> </div> </div> <div class="container"> <div class="row"> <div class="full-width-text"> <p> </p> <div class="desktop-quote"> <p class="size-35" style="text-align: center;">“With your support, we will save lives, meet critical health needs for the most vulnerable, and help communities emerge from crisis with a greater ability to tackle future health threats.”</p> <h5 style="text-align: center;">– Dr Tedros Adhanom Ghebreyesus,<br /> Director-General of the WHO</h5> </div> <p> </p> <p> </p> </div> </div> </div> </main> <!--Footer--> <footer class="page-footer" style="background-color:#f2ffff ;"> <div class="container"> <div class="footer-who-logo"> <a href="https://who.foundation/"> <img src="https://donate.who.foundation/uploads/2024/05/who_footer_logo.png" alt="whof-logo" width="180px"> </a> </div> </div> <div class="who-logo-footer"> <img src="<php ?>" alt=""> </div> <!--Footer Links--> <div class="container"> <div class="row"> <!--First column--> <div class="col-md-3"> <!-- <p class="who-title-footer">WHO Foundation</p> --> <p style="color: #49525c">WHO Foundation<br> Sécheron, Chemin des Mines 2<br> 1202 Geneva<br> Switzerland<br>CHE-379.253.554 <br>RSIN 8270.16.888</p> </div> <!--/.First column--> <!--Second column--> <div class="col-md-3 "> <!-- <h5 class=" font-weight-bold mb-4 who-title-footer">General Inquiries:</h5>--> <ul class="list-unstyled"> <li><span style="color: #49525c"><a class="text-decoration-none" style="color: #FF3DA6;font-size:18px" href="mailto:donations@who.foundation"><strong>donations@who.foundation</strong></a></span></li> <p></p> <li><span style="color: #49525c"><a class="text-decoration-none wt-cli-element cli_settings_button manage-cookies" style="color: #49525c;font-size:18px;background-color:#F2FFFF!important" href="#">Manage cookies</a></span></li> <li><span style="color: #49525c"><a class="text-decoration-none" style="color: #49525c;font-size:18px" href="https://who.foundation/privacy-notice/">Privacy Notice</a></span></li> <li><span style="color: #49525c"><a class="text-decoration-none" style="color: #49525c;font-size:18px" href="https://who.foundation/cookie-policy/">Cookie Policy</a></span></li> <li><span style="color: #49525c"><a class="text-decoration-none" style="color: #49525c;font-size:18px" href="https://who.foundation/terms-and-conditions/">Terms & Conditions</a></span></li> </ul> </div> <!--/.Second column--> <!-- <hr class="w-100 clearfix d-md-none"> --> <!--Third column--> <div class="col-md-3"> <a href="https://www.linkedin.com/company/who-foundation/" target="_blank"><img src="https://donate.who.foundation/uploads/2024/06/Linkedin-icon.png" alt="" /></a> <a href="https://x.com/WHOFoundation/" target="_blank"><img src="https://donate.who.foundation/uploads/2024/06/X-icon.png" alt="" /></a> <a href="https://www.instagram.com/whofoundation/" target="_blank"><img src="https://donate.who.foundation/uploads/2024/06/ig-icon.png" alt="" /></a> </div> <!--/.Third column--> <!--<hr class="w-100 clearfix d-md-none">--> <!--Fourth column--> <div class="col-md-3 mx-auto"> <!-- <h5 class=" font-weight-bold mb-4 who-title-footer">Social Media</h5>--> <!-- <ul class="list-unstyled"> <li><a href="#!">Link 1</a></li> <li><a href="#!">Link 2</a></li> <li><a href="#!">Link 3</a></li> <li><a href="#!">Link 4</a></li> </ul> --> </div> <!--/.Fourth column--> </div> </div> <!--/.Footer Links--> <!--Copyright--> <div class="footer-copyright pt-5"> <div class="container"> © 2024 WHO Foundation. All rights reserved </div> </div> <!--/.Copyright--> </footer> <div class="wt-cli-cookie-bar-container" data-nosnippet="true" data-banner-version="3.0"><!--googleoff: all--><div id="cookie-law-info-bar" role="dialog" aria-live="polite" aria-label="cookieconsent" aria-describedby="wt-cli-cookie-banner" data-cli-geo-loc="0" style="text-align:left; padding:15px 30px;" class="wt-cli-cookie-bar"><div class="cli-wrapper"><h5 role="heading" aria-level="5" tabindex="0" id="wt-cli-cookie-banner-title" style="display:block;">We value your privacy</h5><span id="wt-cli-cookie-banner"><div class="cli-bar-container cli-style-v2"><div class="cli-bar-message">We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies. However you may visit Cookie Settings to provide a controlled consent.</div><div class="cli-bar-btn_container"><a href="https://who.foundation/cookie-policy/" class="text-pink" style="color: #FF3DA6">Cookie Policy</a><a id="wt-cli-settings-btn" tabindex="0" role='button' style="padding:8px 25px 8px 25px; text-decoration:Underline;" class="wt-cli-element cli_settings_button" >Customize</a><a id="wt-cli-reject-btn" tabindex="0" role='button' style="padding:8px 25px 8px 25px;" class="wt-cli-element medium cli-plugin-button cli-plugin-main-button cookie_action_close_header_reject cli_action_button" data-cli_action="reject">Reject All</a><a id="wt-cli-accept-all-btn" tabindex="0" role='button' style="padding:8px 25px 8px 25px;" data-cli_action="accept_all" class="wt-cli-element medium cli-plugin-button wt-cli-accept-all-btn cookie_action_close_header cli_action_button" >Accept All</a></div></div></span></div></div><div tabindex="0" id="cookie-law-info-again" style="display:none;"><span id="cookie_hdr_showagain">Consent Preferences</span></div><div class="cli-modal" id="cliSettingsPopup" role="dialog" aria-labelledby="wt-cli-privacy-title" tabindex="-1" aria-hidden="true"> <div class="cli-modal-dialog" role="document"> <div class="cli-modal-content cli-bar-popup"> <button aria-label="Close" type="button" class="cli-modal-close" id="cliModalClose"> <svg class="" viewBox="0 0 24 24"><path d="M19 6.41l-1.41-1.41-5.59 5.59-5.59-5.59-1.41 1.41 5.59 5.59-5.59 5.59 1.41 1.41 5.59-5.59 5.59 5.59 1.41-1.41-5.59-5.59z"></path><path d="M0 0h24v24h-24z" fill="none"></path></svg> <span class="wt-cli-sr-only">Close</span> </button> <div class="cli-modal-body"> <div class="wt-cli-element cli-container-fluid cli-tab-container"> <div class="cli-row"> <div class="cli-col-12 cli-align-items-stretch cli-px-0"> <div class="cli-privacy-overview"> <h4 id='wt-cli-privacy-title'>Privacy Overview</h4> <div class="cli-privacy-content"> <div class="cli-privacy-content-text">This website uses cookies to improve your experience while you navigate through the website. Out of these cookies, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may have an effect on your browsing experience.</div> </div> <a id="wt-cli-privacy-readmore" tabindex="0" role="button" class="cli-privacy-readmore" data-readmore-text="Show more" data-readless-text="Show less"></a> </div> </div> <div class="cli-col-12 cli-align-items-stretch cli-px-0 cli-tab-section-container" role="tablist"> <div class="cli-tab-section"> <div class="cli-tab-header"> <a id="wt-cli-tab-link-necessary" tabindex="0" role="tab" aria-expanded="false" aria-describedby="wt-cli-tab-necessary" aria-controls="wt-cli-tab-necessary" class="cli-nav-link cli-settings-mobile" data-target="necessary" data-toggle="cli-toggle-tab"> Necessary </a> <div class="wt-cli-necessary-checkbox"> <input type="checkbox" class="cli-user-preference-checkbox" id="wt-cli-checkbox-necessary" aria-label="Necessary" data-id="checkbox-necessary" checked="checked" /> <label class="form-check-label" for="wt-cli-checkbox-necessary"> Necessary </label> </div> <span class="cli-necessary-caption"> Always Enabled </span> </div> <div class="cli-tab-content"> <div id="wt-cli-tab-necessary" tabindex="0" role="tabpanel" aria-labelledby="wt-cli-tab-link-necessary" class="cli-tab-pane cli-fade" data-id="necessary"> <div class="wt-cli-cookie-description">Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously. <table class="wt-cli-element cookielawinfo-row-cat-table cookielawinfo-winter"><thead><tr><th scope="col" class="cookielawinfo-column-1">Cookie</th><th scope="col" class="cookielawinfo-column-3">Duration</th><th scope="col" class="cookielawinfo-column-4">Description</th></tr></thead><tbody><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">cookielawinfo-checkbox-advertisement</td><td class="cookielawinfo-column-3">1 year</td><td class="cookielawinfo-column-4">Set by the GDPR Cookie Consent plugin, this cookie records the user consent for the cookies in the "Advertisement" category.</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">cookielawinfo-checkbox-analytics</td><td class="cookielawinfo-column-3">11 months</td><td class="cookielawinfo-column-4">This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">cookielawinfo-checkbox-functional</td><td class="cookielawinfo-column-3">11 months</td><td class="cookielawinfo-column-4">The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">cookielawinfo-checkbox-necessary</td><td class="cookielawinfo-column-3">11 months</td><td class="cookielawinfo-column-4">This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">cookielawinfo-checkbox-others</td><td class="cookielawinfo-column-3">11 months</td><td class="cookielawinfo-column-4">This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">cookielawinfo-checkbox-performance</td><td class="cookielawinfo-column-3">11 months</td><td class="cookielawinfo-column-4">This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">CookieLawInfoConsent</td><td class="cookielawinfo-column-3">1 year</td><td class="cookielawinfo-column-4">CookieYes sets this cookie to record the default button state of the corresponding category and the status of CCPA. It works only in coordination with the primary cookie.</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">fundraiseup_cid</td><td class="cookielawinfo-column-3">1 year 1 month 4 days</td><td class="cookielawinfo-column-4">This cookie is set by Fundraise Up, and is used to identify a user’s browser. This cookie is necessary for the platform to function properly and securely, as it helps us detect and prevent fraud.</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">fundraiseup_session</td><td class="cookielawinfo-column-3">past</td><td class="cookielawinfo-column-4">This cookie tracks a user's current session while interacting with the site. It is used for maintaining information about their activities (e.g., donation process) during that session. Once the session ends the cookie is deleted.</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">viewed_cookie_policy</td><td class="cookielawinfo-column-3">11 months</td><td class="cookielawinfo-column-4">The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">wpEmojiSettingsSupports</td><td class="cookielawinfo-column-3">session</td><td class="cookielawinfo-column-4">WordPress sets this cookie when a user interacts with emojis on a WordPress site. It helps determine if the user's browser can display emojis properly.</td></tr></tbody></table></div> </div> </div> </div> <div class="cli-tab-section"> <div class="cli-tab-header"> <a id="wt-cli-tab-link-functional" tabindex="0" role="tab" aria-expanded="false" aria-describedby="wt-cli-tab-functional" aria-controls="wt-cli-tab-functional" class="cli-nav-link cli-settings-mobile" data-target="functional" data-toggle="cli-toggle-tab"> Functional </a> <div class="cli-switch"> <input type="checkbox" class="cli-user-preference-checkbox" id="wt-cli-checkbox-functional" aria-label="functional" data-id="checkbox-functional" role="switch" aria-controls="wt-cli-tab-link-functional" aria-labelledby="wt-cli-tab-link-functional" /> <label for="wt-cli-checkbox-functional" class="cli-slider" data-cli-enable="Enabled" data-cli-disable="Disabled"><span class="wt-cli-sr-only">functional</span></label> </div> </div> <div class="cli-tab-content"> <div id="wt-cli-tab-functional" tabindex="0" role="tabpanel" aria-labelledby="wt-cli-tab-link-functional" class="cli-tab-pane cli-fade" data-id="functional"> <div class="wt-cli-cookie-description">Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features. <table class="wt-cli-element cookielawinfo-row-cat-table cookielawinfo-winter"><thead><tr><th scope="col" class="cookielawinfo-column-1">Cookie</th><th scope="col" class="cookielawinfo-column-3">Duration</th><th scope="col" class="cookielawinfo-column-4">Description</th></tr></thead><tbody><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">fundraiseup_func</td><td class="cookielawinfo-column-3">session</td><td class="cookielawinfo-column-4">This functional cookie ensures the Fundraise Up service operates properly, enhancing and personalizing the donation experience. It helps optimize site interactions and ensures elements like the Reminder function correctly, ultimately boosting engagement and improving the giving experience for visitors.</td></tr></tbody></table></div> </div> </div> </div> <div class="cli-tab-section"> <div class="cli-tab-header"> <a id="wt-cli-tab-link-analytics" tabindex="0" role="tab" aria-expanded="false" aria-describedby="wt-cli-tab-analytics" aria-controls="wt-cli-tab-analytics" class="cli-nav-link cli-settings-mobile" data-target="analytics" data-toggle="cli-toggle-tab"> Analytics </a> <div class="cli-switch"> <input type="checkbox" class="cli-user-preference-checkbox" id="wt-cli-checkbox-analytics" aria-label="analytics" data-id="checkbox-analytics" role="switch" aria-controls="wt-cli-tab-link-analytics" aria-labelledby="wt-cli-tab-link-analytics" /> <label for="wt-cli-checkbox-analytics" class="cli-slider" data-cli-enable="Enabled" data-cli-disable="Disabled"><span class="wt-cli-sr-only">analytics</span></label> </div> </div> <div class="cli-tab-content"> <div id="wt-cli-tab-analytics" tabindex="0" role="tabpanel" aria-labelledby="wt-cli-tab-link-analytics" class="cli-tab-pane cli-fade" data-id="analytics"> <div class="wt-cli-cookie-description">Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc. <table class="wt-cli-element cookielawinfo-row-cat-table cookielawinfo-winter"><thead><tr><th scope="col" class="cookielawinfo-column-1">Cookie</th><th scope="col" class="cookielawinfo-column-3">Duration</th><th scope="col" class="cookielawinfo-column-4">Description</th></tr></thead><tbody><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">_ga</td><td class="cookielawinfo-column-3">1 year 1 month 4 days</td><td class="cookielawinfo-column-4">Google Analytics sets this cookie to calculate visitor, session and campaign data and track site usage for the site's analytics report. The cookie stores information anonymously and assigns a randomly generated number to recognise unique visitors.</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">_ga_*</td><td class="cookielawinfo-column-3">1 year 1 month 4 days</td><td class="cookielawinfo-column-4">Google Analytics sets this cookie to store and count page views.</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">_gcl_au</td><td class="cookielawinfo-column-3">3 months</td><td class="cookielawinfo-column-4">Google Tag Manager sets the cookie to experiment advertisement efficiency of websites using their services.</td></tr><tr class="cookielawinfo-row"><td class="cookielawinfo-column-1">fundraiseup_stat</td><td class="cookielawinfo-column-3">session</td><td class="cookielawinfo-column-4">This cookie is used to determine whether the user has given us permission to track their actions. If permission is granted, we will collect and analyze anonymous statistics about how visitors use the site. This data helps us optimize site functionality and provide a higher quality user experience.</td></tr></tbody></table></div> </div> </div> </div> <div class="cli-tab-section"> <div class="cli-tab-header"> <a id="wt-cli-tab-link-advertisement" tabindex="0" role="tab" aria-expanded="false" aria-describedby="wt-cli-tab-advertisement" aria-controls="wt-cli-tab-advertisement" class="cli-nav-link cli-settings-mobile" data-target="advertisement" data-toggle="cli-toggle-tab"> Advertisement </a> <div class="cli-switch"> <input type="checkbox" class="cli-user-preference-checkbox" id="wt-cli-checkbox-advertisement" aria-label="advertisement" data-id="checkbox-advertisement" role="switch" aria-controls="wt-cli-tab-link-advertisement" aria-labelledby="wt-cli-tab-link-advertisement" /> <label for="wt-cli-checkbox-advertisement" class="cli-slider" data-cli-enable="Enabled" data-cli-disable="Disabled"><span class="wt-cli-sr-only">advertisement</span></label> </div> </div> <div class="cli-tab-content"> <div id="wt-cli-tab-advertisement" tabindex="0" role="tabpanel" aria-labelledby="wt-cli-tab-link-advertisement" class="cli-tab-pane cli-fade" data-id="advertisement"> <div class="wt-cli-cookie-description">Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads. </div> </div> </div> </div> </div> </div> </div> </div> <div class="cli-modal-footer"> <div class="wt-cli-element cli-container-fluid cli-tab-container"> <div class="cli-row"> <div class="cli-col-12 cli-align-items-stretch cli-px-0"> <div class="cli-tab-footer wt-cli-privacy-overview-actions"> <div class="cli-preference-btn-wrapper"> <a id="wt-cli-reject-btn" tabindex="0" role='button' style="padding:8px 25px 8px 25px;" class="wt-cli-element medium cli-plugin-button cli-plugin-main-button cookie_action_close_header_reject cli_action_button" data-cli_action="reject">Reject All</a> <a id="wt-cli-save-preferences-btn" tabindex="0" style="padding:8px 25px 8px 25px; color:#000000; border-radius:0px;" class="wt-cli-element medium cli-plugin-button wt-cli-save-preferences-btn" >Save My Preferences</a> <a id="wt-cli-accept-all-btn" tabindex="0" role='button' style="padding:8px 25px 8px 25px;" data-cli_action="accept_all" class="wt-cli-element medium cli-plugin-button wt-cli-accept-all-btn cookie_action_close_header cli_action_button" >Accept All</a> </div> </div> <div class="wt-cli-ckyes-footer-section"> <div class="wt-cli-ckyes-brand-logo">Powered by <a target="_blank" href="https://www.webtoffee.com/"><img src="https://donate.who.foundation/plugins/webtoffee-gdpr-cookie-consent/images/webtoffee-logo.svg" alt="WebToffee Logo"></a></div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="cli-modal-backdrop cli-fade cli-settings-overlay"></div> <div class="cli-modal-backdrop cli-fade cli-popupbar-overlay"></div> <!--googleon: all--></div> <script type="text/javascript"> /* <![CDATA[ */ cli_cookiebar_settings='{"animate_speed_hide":"500","animate_speed_show":"500","background":"rgb(255, 255, 255)","border":"#b1a6a6c2","border_on":false,"button_1_button_colour":"rgb(0, 0, 0)","button_1_button_hover":"rgb(0, 0, 0)","button_1_link_colour":"#fff","button_1_as_button":true,"button_1_new_win":false,"button_2_button_colour":"rgb(255, 255, 255)","button_2_button_hover":"rgb(255, 255, 255)","button_2_link_colour":"#898888","button_2_as_button":true,"button_2_hidebar":false,"button_2_nofollow":false,"button_3_button_colour":"rgb(222, 223, 224)","button_3_button_hover":"rgb(222, 223, 224)","button_3_link_colour":"#000000","button_3_as_button":true,"button_3_new_win":false,"button_4_button_colour":"rgba(0, 0, 0, 0)","button_4_button_hover":"rgba(0, 0, 0, 0)","button_4_link_colour":"#000000","button_4_as_button":false,"button_7_button_colour":"rgb(0, 0, 0)","button_7_button_hover":"rgb(0, 0, 0)","button_7_link_colour":"#ffffff","button_7_as_button":true,"button_7_new_win":false,"font_family":"inherit","header_fix":false,"notify_animate_hide":true,"notify_animate_show":false,"notify_div_id":"#cookie-law-info-bar","notify_position_horizontal":"right","notify_position_vertical":"bottom","scroll_close":false,"scroll_close_reload":false,"accept_close_reload":false,"reject_close_reload":false,"showagain_tab":false,"showagain_background":"#fff","showagain_border":"#000","showagain_div_id":"#cookie-law-info-again","showagain_x_position":"100px","text":"#333","show_once_yn":false,"show_once":"10000","logging_on":false,"as_popup":false,"popup_overlay":true,"bar_heading_text":"We value your privacy","cookie_bar_as":"banner","cookie_setting_popup":true,"accept_all":true,"js_script_blocker":false,"popup_showagain_position":"bottom-right","widget_position":"left","button_1_style":[["padding","8px 25px 8px 25px"]],"button_2_style":[],"button_3_style":[["padding","8px 25px 8px 25px"]],"button_4_style":[["padding","8px 25px 8px 25px"],["text-decoration","Underline"]],"button_5_style":{"0":["float","right"],"1":["text-decoration","none"],"2":["color","#333"],"3":["background-color","rgba(0, 0, 0, 0)"],"5":["background-color","rgba(0, 0, 0, 0)"]},"button_7_style":[["padding","8px 25px 8px 25px"]],"accept_close_page_navigation":false,"button_8_button_colour":"#DEDFE0","button_8_button_hover":"#b2b2b3","button_8_link_colour":"#000000","button_8_as_button":"1","button_8_new_win":"","consent_mode":false,"google_consent_mode":false}'; /* ]]> */ </script> <style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> <link rel='stylesheet' id='cookie-law-info-table-css' href='https://donate.who.foundation/plugins/webtoffee-gdpr-cookie-consent/public/css/cookie-law-info-table.css?ver=2.6.0' type='text/css' media='all' /> <script type="text/javascript" src="https://donate.who.foundation/themes/whofcampaign/assets/js/app.js?ver=1.0.0" id="whoscript-js"></script> </body> </html>