Ad_bot

 <!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <title>Auto Ad System</title>

  <style>

    body {

      font-family: sans-serif;

      background: #f3f4f6;

      text-align: center;

      padding: 20px;

      margin: 0;

    }


    .container {

      background: white;

      padding: 25px;

      border-radius: 15px;

      box-shadow: 0 5px 20px rgba(0,0,0,0.1);

      max-width: 420px;

      margin: 20px auto;

    }


    h2 {

      margin-bottom: 20px;

    }


    button {

      width: 100%;

      padding: 15px;

      margin: 10px 0;

      font-size: 16px;

      border: none;

      border-radius: 8px;

      cursor: pointer;

      color: white;

    }


    #autoBtn {

      background: #2563eb;

    }


    #stopBtn {

      background: linear-gradient(to right, #ff416c, #ff4b2b);

    }


    #timer {

      font-size: 18px;

      margin-top: 15px;

      display: none;

    }


    .ad-block {

      margin: 20px auto;

    }

  </style>

</head>

<body>


  <!-- ✅ ProfitablerateCPM Banner Ad -->

  <div class="ad-block">

    <script async="async" data-cfasync="false" src="//pl27319529.profitableratecpm.com/ae69bb8ca3b7ec870b7a270d279393e7/invoke.js"></script>

    <div id="container-ae69bb8ca3b7ec870b7a270d279393e7"></div>

  </div>


  <div class="container">

    <h2>Auto Ad System</h2>

    <button id="autoBtn" onclick="startAutoRefresh()">Auto Ads</button>

    <button id="stopBtn" onclick="stopAutoRefresh()">Stop Auto Ads</button>

    <div id="timer">Next refresh in <span id="count">30</span>s</div>


    <!-- ✅ ProfitablerateCPM Inline Script Ad -->

    <div class="ad-block">

      <script type='text/javascript' src='//pl27319524.profitableratecpm.com/c9/45/96/c945968c997214a2e7c13cc143a2fef7.js'></script>

    </div>

  </div>


  <!-- ✅ ProfitablerateCPM Direct URL Ads (can be used in redirection or links) -->

  <!-- 

  Example use:

  <a href="https://www.profitableratecpm.com/ugus81chu?key=a194e8ac5a3595ba64c98c7cc7279e3d" target="_blank">Click for Offer</a>

  -->


  <!-- Optional -->

  <!-- <iframe src="https://www.profitableratecpm.com/gw5nhuxg?key=2e59a6daebcec8d5a3ae25f8d236cf23" width="0" height="0" style="display:none;"></iframe> -->

  <!-- <iframe src="https://www.profitableratecpm.com/ffbfv0je?key=a9030e680d14dafd40827caaaaec99d4" width="0" height="0" style="display:none;"></iframe> -->


  <script>

    let refreshActive = false;

    let countdown = 30;

    let timerInterval;


    function startAutoRefresh() {

      if (refreshActive) return;

      refreshActive = true;

      document.getElementById("timer").style.display = "block";

      countdown = 30;

      document.getElementById("count").textContent = countdown;


      timerInterval = setInterval(() => {

        countdown--;

        document.getElementById("count").textContent = countdown;


        if (countdown <= 0) {

          clearInterval(timerInterval);

          location.reload();

        }

      }, 1000);

    }


    function stopAutoRefresh() {

      refreshActive = false;

      clearInterval(timerInterval);

      document.getElementById("timer").style.display = "none";

    }


    window.onload = function () {

      if (document.referrer.includes(window.location.hostname)) {

        startAutoRefresh();

      }

    }

  </script>

</body>

</html>

Comments

Popular posts from this blog