Thank You!
Your enquiry has been submitted successfully.
Our travel expert will contact you shortly with the best offers and package details.
Redirecting to Home in 10 seconds…
let time = 10;
const timer = document.getElementById("timer");
const countdown = setInterval(function(){
time--;
timer.innerHTML = time;
if(time <= 0){ clearInterval(countdown); window.location.href = "https://printerrentalgurugram.com/"; } },1000);
