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/themes/whofcampaign/assets/other-assets/images/WHOF-new-logo.png" /> <meta property="og:image:secure_url" content="https://donate.who.foundation/themes/whofcampaign/assets/other-assets/images/WHOF-new-logo.png" /> <meta property="og:image:alt" content="WHO - Foundation" /> <meta property='og:description' content='Health Can’t Wait. Your Support Saves Lives Today.'/> <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":"d4cbc51c32","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/2025/01/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">Health Can’t Wait. Your Support Saves Lives Today. </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="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/2025/01/Healthier-World-scaled.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;">Shaping a Healthier World Starts Here</h2> <p><span style="font-weight: 400;">For over 75 years, the World Health Organization (WHO) has led the charge to protect lives and improve health everywhere. Together, we’ve eradicated smallpox, delivered life-saving vaccines, and responded to crises impacting millions.</span></p> <p><span style="font-weight: 400;">Every milestone achieved is proof of what we can accomplish when we come together. But today, the challenges are greater than ever. Diseases, humanitarian crises, and health emergencies are growing in scale and complexity, demanding swift, decisive action.</span></p> <p><span style="font-weight: 400;">WHO cannot do this alone. Your support empowers WHO to respond to emergencies, stop the spread of deadly diseases, and bring life-saving care to those who need it most. </span><b>Together, we can meet these challenges head-on and create healthier, safer futures for all.</b></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="container"> <div class="row"> <div class="full-width-text"> <h2 style="color: #49525c;">Where Your Support Makes an Impact</h2> </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;">1. Rapid Response to Emergencies</h2> <p> </p> <p><span style="font-weight: 400;">When crises strike—natural disasters, conflict, or disease outbreaks—WHO acts immediately. Right now in 2025 WHO is tackling 42 ongoing health emergencies, reaching 305 million people in need of urgent care.</span></p> <p><span style="font-weight: 400;">WHO has delivered critical supplies, rebuilt health systems, and supported health workers in some of the most challenging environments. But the need is immense, and millions more are waiting for help.</span></p> <p><b>Together, we can ensure every person affected by emergencies gets the care they need when they need it most.</b></p> <p><span style="font-weight: 400;">Your support helps WHO respond faster, save more lives, and rebuild communities.</span></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/2025/01/Response-to-Emergencies-2.jpg" 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/2025/01/mental_health.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;">2. Advancing Mental Health and Well-Being for All</h2> <p> </p> <p><span style="font-weight: 400;">One in eight people globally lives with a mental health condition, yet stigma and limited access prevent many from seeking help. WHO is breaking barriers, expanding access to care, and championing mental health as a global priority.</span></p> <p><span style="font-weight: 400;">In 2025, WHO is scaling up mental health resources and services, particularly in conflict zones and underserved areas.</span></p> <p><b>Together, we can create a world where mental health care is available for everyone, everywhere.</b></p> <p><span style="font-weight: 400;">Your donation helps provide life-saving support to those in need.</span></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;">3. Protecting Women’s Health: Empowering Lives, Strengthening Communities</h2> <p> </p> <p><span style="font-weight: 400;">Every day, 800 women die from preventable causes related to pregnancy and childbirth, most in low-resource settings. Millions more lack access to essential health services, including family planning, cancer screenings, and mental health care.</span></p> <p><span style="font-weight: 400;">WHO has been at the forefront of addressing these challenges. It has trained thousands of health workers, expanded access to safe childbirth and reproductive health services, and delivered HPV vaccines to millions of girls to prevent cervical cancer. WHO also works to combat violence against women and provide tailored mental health support.</span></p> <p><b>Together, we can ensure no woman dies needlessly from preventable causes.</b></p> <p><span style="font-weight: 400;">Your contribution empowers women to lead healthier lives, strengthens families, and builds stronger communities.</span></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/2025/01/Women_Health-1.jpg" 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/2025/01/Childhood-Vaccinations-1.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;">4. Childhood Vaccinations: A Lifeline for Generations</h2> <p> </p> <p><span style="font-weight: 400;">Vaccines save millions of lives each year, yet in 2023, 21 million children missed vital immunizations, leaving them vulnerable to diseases like polio, measles, and diphtheria.</span></p> <p><span style="font-weight: 400;">WHO has led global vaccination efforts, reducing polio cases by 99% since 1988 and ensuring vaccines reach even the most remote communities. These efforts protect children from preventable diseases, giving them the chance to grow, thrive, and dream of brighter futures.</span></p> <p><b>Together, we can ensure no child is left behind.</b></p> <p><span style="font-weight: 400;">Your support brings life-saving vaccines to children who need them most, building healthier generations.</span></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;">5. Stopping the Spread of Infectious Diseases</h2> <p> </p> <p><span style="font-weight: 400;">Thanks to WHO’s scientific guidelines and approval of medicines, diseases like malaria, tuberculosis, and HIV now have life-saving treatments that are affordable and widely accessible. WHO has coordinated the rollout of malaria vaccines to children in 17 African countries, while ensuring treatments for TB, HIV, and mpox reach the most vulnerable. These efforts have saved millions of lives and drastically reduced infection rates worldwide.</span></p> <p><span style="font-weight: 400;">WHO’s global coordination ensures that outbreaks like mpox and other emerging diseases are stopped before they spread, protecting health systems and communities everywhere.</span></p> <p><b>Together, we can stop the spread of deadly diseases and ensure life-saving vaccines and treatments reach everyone, everywhere.</b></p> <p>Your support strengthens these vital efforts, saving lives and safeguarding futures for generations to come.</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/2025/01/Infectious_-Diseases.jpg" 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/2025/01/Tackling-Cancer-Diabetes-and-Heart-Disease-1.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;">6. Tackling Cancer, Diabetes, and Heart Disease</h2> <p> </p> <p><span style="font-weight: 400;">Non-communicable diseases (NCDs) like cancer, diabetes, and heart disease account for 75% of deaths globally. WHO leads efforts to prevent and manage these conditions through research, advocacy, and policy, improving health outcomes worldwide.</span></p> <p><span style="font-weight: 400;">Despite progress, these silent killers remain the leading cause of death. WHO is working to ensure prevention and treatment reach every corner of the world.</span></p> <p><b>Together, we can reduce the burden of NCDs and create healthier communities.</b></p> <p><span style="font-weight: 400;">Your support drives action to prevent these diseases and save millions of lives.</span></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;">Why Support WHO Through the WHO Foundation?</h2> <p><b><br /> </b><span style="font-weight: 400;">WHO’s work touches lives everywhere. From disease prevention to emergency response, WHO safeguards global health and well-being.</span></p> <p><span style="font-weight: 400;">By supporting the WHO Foundation, you enable WHO to act decisively, save lives, and create a healthier, safer future for everyone.</span></p> <p><span style="font-weight: 400;">The need is urgent, but together, we can meet it. Your contribution fuels WHO’s life-saving work. Join us today to help shape a healthier world.</span></p> <p><b>You donate—we act.</b></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/2025/01/WHO-safeguards-global-health-and-well-being-1.jpg" alt="who-image" class="col-image"> </div> </div> </div> </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 style="list-style-type: none"> <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> </ul> </li> </ul> <p> </p> <ul class="list-unstyled"> <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/frequently-asked-question/" target="_blank" rel="noopener">Donation FAQs</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>