Breadcrumb
About DIPG
Myth or Fact?
How much do you know about the deadliest childhood brain tumor? Flip the cards to find out.
DIPG steals roughly 300 children per year in the U.S. alone. Research funded by families and foundations is the reason the first treatment was approved in 2025. Every dollar matters.
// Flip logic document.querySelectorAll('.card').forEach(card => { card.addEventListener('click', () => { if (!card.classList.contains('flipped')) { card.classList.add('flipped'); updateCount(); } }); }); function updateCount() { const count = document.querySelectorAll('.card.flipped').length; document.getElementById('flipped-count').textContent = count; } function resetCards() { document.querySelectorAll('.card.flipped').forEach(card => { card.classList.remove('flipped'); }); document.getElementById('flipped-count').textContent = '0'; }