<script>
// Script Shared By Tanvir Hasan Rubel
// Function to redirect after 5 seconds rubel Channel
function redirectToCustomURL() {
window.location.replace('https://tanvirhasanrubel1.blogspot.com/');
}
// Wait for the page to load, then redirect after 5 seconds ,
document.addEventListener("DOMContentLoaded", function(event) {
setTimeout(redirectToCustomURL, 5000); // 5000 milliseconds = 5 seconds
});
</script>
0 Comments