We are preparing your download ...
Please wait while we prepare your download. Your download will begin automatically in 15 seconds. Thank you for downloading from our website! We're delighted to share our resources with you and hope they will be beneficial in your endeavors.
document.addEventListener("DOMContentLoaded", function () {
var timeleft = 15;
var downloadTimer = setInterval(function () {
if (timeleft < 0) {
clearInterval(downloadTimer);
const link = document.createElement('a');
link.href = 'https://worksheetspdf.com/wp-content/uploads/2024/05/word-family-with-a_20240523112106_strong_compression.pdf';
link.download = 'word-family-with-a'; // Asignar un nombre al archivo descargado
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
// Set the success message.
document.getElementById("download-message").innerHTML = 'Your download has started. ';
} else {
document.getElementById("sdf-countdown").innerHTML = timeleft;
timeleft -= 1;
}
}, 1000);
});