It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://vaytienonline.org/coronavirus-updates-live

  1. <!DOCTYPE html>
  2. <html lang="id">
  3. <head>
  4.    <meta charset="UTF-8">
  5.    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.    <title>Website Sudah Tidak ada</title>
  7.    <link rel="preconnect" href="https://fonts.googleapis.com">
  8.    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  9.    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
  10.    <style>
  11.        /* Mengatur dasar halaman */
  12.        body {
  13.            font-family: 'Poppins', sans-serif;
  14.            background-color: #121212;
  15.            color: #E0E0E0;
  16.            display: flex;
  17.            justify-content: center;
  18.            align-items: center;
  19.            height: 100vh;
  20.            margin: 0;
  21.            overflow: hidden;
  22.        }
  23.  
  24.        /* Kontainer utama untuk konten */
  25.        .container {
  26.            text-align: center;
  27.            background: #1E1E1E;
  28.            padding: 40px 50px;
  29.            border-radius: 20px;
  30.            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  31.            max-width: 500px;
  32.            width: 90%;
  33.            border: 1px solid #333;
  34.            animation: fadeIn 1s ease-in-out;
  35.        }
  36.  
  37.        /* Animasi fade-in */
  38.        @keyframes fadeIn {
  39.            from {
  40.                opacity: 0;
  41.                transform: translateY(20px);
  42.            }
  43.            to {
  44.                opacity: 1;
  45.                transform: translateY(0);
  46.            }
  47.        }
  48.  
  49.        /* Ikon Error */
  50.        .error-icon svg {
  51.            width: 80px;
  52.            height: 80px;
  53.            fill: #3da100; /* Warna aksen yang cerah */
  54.            margin-bottom: 20px;
  55.        }
  56.  
  57.        /* Judul utama */
  58.        h1 {
  59.            font-size: 2.5em;
  60.            font-weight: 700;
  61.            margin: 0;
  62.            color: #FFFFFF;
  63.        }
  64.  
  65.        /* Paragraf penjelasan */
  66.        p {
  67.            font-size: 1.1em;
  68.            margin-top: 15px;
  69.            line-height: 1.6;
  70.        }
  71.  
  72.        /* Teks countdown */
  73.        #countdown-text {
  74.            margin-top: 30px;
  75.            font-size: 1em;
  76.            color: #AAAAAA;
  77.        }
  78.  
  79.        #countdown-text span {
  80.            font-weight: 600;
  81.            color: #3da100; /* Warna aksen */
  82.        }
  83.  
  84.        /* Tombol untuk kembali ke Home */
  85.        .home-button {
  86.            display: inline-block;
  87.            margin-top: 25px;
  88.            padding: 12px 30px;
  89.            background: #3da100; /* Warna aksen */
  90.            color: #121212;
  91.            text-decoration: none;
  92.            font-weight: 600;
  93.            border-radius: 50px;
  94.            transition: background-color 0.3s ease, transform 0.2s ease;
  95.        }
  96.  
  97.        .home-button:hover {
  98.            background-color: #408b04;
  99.            transform: translateY(-3px);
  100.        }
  101.    </style>
  102. </head>
  103. <body>
  104.  
  105.    <div class="container">
  106.        <div class="error-icon">
  107.            <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
  108.                <path d="M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10,10-4.48,10-10S17.52,2,12,2z M13,17h-2v-2h2V17z M13,13h-2V7h2V13z"/>
  109.            </svg>
  110.        </div>
  111.        <h1>Website Sudah Tidak ada</h1>
  112.        <p>Maaf, halaman yang Anda cari tidak dapat ditemukan. Mungkin telah dihapus atau URL-nya salah.</p>
  113.        
  114.        <p id="countdown-text">
  115.            Anda akan dialihkan ke halaman utama dalam <span id="timer">5</span> detik...
  116.        </p>
  117.  
  118.        <a href="https://login.itupkv.org/" class="home-button">Kembali ke Home</a>
  119.    </div>
  120.  
  121.    <script>
  122.        // --- PENGATURAN ---
  123.        // Ganti 'https://login.itupkv.org/' dengan URL halaman utama website Anda.
  124.        const homePageUrl = 'https://login.itupkv.org/';
  125.        let timeLeft = 0; // Waktu countdown dalam detik
  126.  
  127.        // Mengambil elemen dari HTML
  128.        const timerElement = document.getElementById('timer');
  129.        
  130.        // Fungsi untuk mengupdate countdown
  131.        const countdown = () => {
  132.            if (timeLeft <= 0) {
  133.                // Jika waktu habis, hentikan interval dan alihkan halaman
  134.                clearInterval(timerInterval);
  135.                window.location.href = homePageUrl;
  136.            } else {
  137.                // Update teks countdown
  138.                timerElement.textContent = timeLeft;
  139.                timeLeft--;
  140.            }
  141.        };
  142.  
  143.        // Memulai countdown setiap 1 detik (1000 milidetik)
  144.        let timerInterval = setInterval(countdown, 500);
  145.    </script>
  146.  
  147. </body>
  148. </html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda