Skip to content
Popup Example

Earn From News Kiosk

Campaign to give polio vaccine to 6 lakh children in Gaza

February 22, 2025
Campaign to give polio vaccine to 6 lakh children in Gaza

News kiosk- Are You Making These Common Mistakes? Click below to Learn More

Secret That Everyone Is Talking About

News kiosk Latest Posts

Donald Trump has been a thorn in the side for some time Read more

The post Trump’s US tariff in the FAZ-Livetic … appeared first on News Kiosk.

Read more

A short link May 24, 2025, 06:00 Anastasia Rumyantseva, the most vulnerable Read more

The post The breeds of dogs are named, which … appeared first on News Kiosk.

Read more

Russia and Ukraine want to continue the greatest prisoner exchange since the Read more

The post Kyiv and Moscow want more … appeared first on News Kiosk.

Read more

Short link May 24, 2025, 05:30 Anastasia Rumyantseva when frying meat on Read more

The post Russians warned about the risk of R … appeared first on News Kiosk.

Read more

When Vysotsky looked at the modern and so conscientious television in relation Read more

The post If we do not respond, RT on R … appeared first on News Kiosk.

Read more

If you want to dive deeper into the topic, click on Read More:

Gardening with Ecorganicas: Your Source for Organic Gardening Tips Financial potential with expert tips on budgeting, investing, and saving Unlock the Hidden Truth: Click to Reveal!

The current campaign is the sequel to the previous year’s polio vaccine campaign, in which millions of young children were given the abolition of vaccine. In recent times in Gaza, polio virus was found in waste water samples, which shows that it continues to spread, due to which children are at risk of polio infection. This campaign is being led by Palestinian Health Ministry. And this campaign is being implemented in collaboration with the World Health Organization (WHO), United Nations Children’s Fund (UNICEF), United Nations Palestine Refugee Agency – UNRWA and other partners Hai. UNRWA’s Mahayukta Philippe Lazarini wrote in a social media post that 1 thousand 700 members of the teams posted on the health centers and mobile units of the agency are participating in this campaign. Said that all the teams with promptness on the ground, to make this campaign smooth and successful, active Are the UN agencies that a total of 1 thousand 660 teams, polio vaccine are being dreamed in this campaign. The health teams of UNRWA are one -third of the entire campaign, whose number is 555. Will provide polio vaccine in. Number of these health centers – One Rafah, three in Khan Yunis and three in intermediate areas and one health centers are located in Gaza City, which is in the north. About 60 mobile medical units of UNRWA are also protecting children from polio Will feed the vaccine. This campaign will run till 26 February.

Credit-Read More

News kiosk Latest Posts

// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts

// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);

// Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);

// Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;

// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `

${description} Read more

`;

// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}

// Call the function to fetch and display the latest posts
fetchLatestPosts();