HFM is led by a diverse, qualified team of professionals united by a shared calling to serve the fatherless. Our teams span Uganda, the United States, the United Kingdom, and Kenya.
const HOME_PAGE = "index.html"; // change to "index.html" if that's your real home
// Fix any links like href="#about" to go to HOME_PAGE#about
document.querySelectorAll('a[href^="#"]').forEach(a => {
const hash = a.getAttribute("href");
a.setAttribute("href", `${HOME_PAGE}${hash}`);
});