Cart 0
Hands Together.jpg

Our Mission

Because ASF Canada is made up of volunteers who have been affected by Angelman syndrome, we understand the struggles that families go through.  It is our mission to provide those families with support, and resources through our community to give those living with Angelman syndrome a more meaningful life.

ANgles2017-14 sm.jpg

Get Involved

Sign up for our news letter, volunteer at one of our events, or throw your own fundraiser!

 
Angels2-17sm.jpg

About ASF Canada

The mission of ASF Canada is to provide support to individuals with Angelman syndrome, their families and caregivers through our Family Fund, Angelman Clinics, Biennial Conference, and many more initiatives. 

fourangels sm.jpg

Upcoming Events

ASF Canada Family Conference - Registration is open!

Angelman Strong 2025 Walks - Registration is open!

 
let index = 0; function moveSlide(step) { const items = document.querySelectorAll('.carousel-item'); const totalItems = items.length; index += step; if (index < 0) { index = totalItems - 1; // Go to the last item } else if (index >= totalItems) { index = 0; // Go to the first item } const carousel = document.querySelector('.carousel'); const offset = -index * 100; // Move by 100% of one item carousel.style.transform = `translateX(${offset}%)`; } document.querySelector('.prev').addEventListener('click', function() { moveSlide(-1); }); document.querySelector('.next').addEventListener('click', function() { moveSlide(1); });