Please ensure Javascript is enabled for purposes of website accessibility
Help free 50 families from modern-day slavery! Tap for details

Request Your Complimentary Advent Prayer Guide

We want to warmly welcome you into the season of Advent: a time of spiritual preparation leading up to Christmas Day!


Simply complete the form on this page and you’ll receive a free Advent prayer guide created by the team at Global Christian Relief.


The Advent prayer guide allows believers everywhere to prepare their hearts for the celebration of Christ’s birth. Enjoy a four-part devotional series examining the Christmas story, the fruits of the Spirit and the resilience of our persecuted brothers and sisters around the globe. 


Enter your name and email address now to get the Advent prayer guide. Thank you in advance and may you be blessed this Advent season!

Share with Your Friends

Share on Facebook Share on Twitter

const fileInput = document.querySelector("#input"), downloadBtn = document.querySelector("#button"); downloadBtn.addEventListener("click", e => { e.preventDefault(); downloadBtn.innerText = "Downloading file..."; fetchFile(fileInput.value); }); function fetchFile(url) { fetch(url).then(res => res.blob()).then(file => { let tempUrl = URL.createObjectURL(file); const aTag = document.createElement("a"); aTag.href = tempUrl; aTag.download = url.replace(/^.*[\\\/]/, ''); document.body.appendChild(aTag); aTag.click(); downloadBtn.innerText = "Download File"; URL.revokeObjectURL(tempUrl); aTag.remove(); }).catch(() => { alert("Failed to download file!"); downloadBtn.innerText = "Download File"; }); }