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: http://www.raducobra.com/7ce9ae3a/addicted-to-love-soundtracks.html

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. *{
  6.        margin:0;
  7.        padding:0;
  8.        box-sizing:border-box;
  9.        overflow:hidden;
  10.    }
  11. body {
  12. background:#000;
  13. }
  14.    .bg-image {
  15.      width: 100vw;
  16.      height: 100vh;
  17.      background-size: cover;
  18.      background-position: center;
  19.      opacity: 0;
  20.      transition: opacity 1s ease-in;
  21.    }
  22. #progress {
  23.  margin: 0 auto;
  24.  width: 100%;
  25.  height: 5px;
  26.  position: relative;
  27.  background-color: #000;
  28. }
  29.  
  30. #bar {
  31.  background-color: yellow;
  32.  width: 10px;
  33.  height: 5px;
  34.  position: absolute;
  35. }
  36.   /* responsive styles */
  37.    @media only screen and (max-width: 600px) {
  38.        .bg-image {
  39.            height:auto;
  40.            width:100%;
  41.        }
  42.    }    
  43. #music {display:none!important}
  44. </style>
  45. </head>
  46. <body>
  47. <div class="bg-image"></div>
  48. <script>
  49.        // JavaScript code here
  50.    // function to generate random image name
  51.    function getRandomImageName() {
  52.      var randomNumber = Math.floor(Math.random() * 72) + 1;
  53.      var imageName = randomNumber.toString().padStart(3, "0");
  54.      return "https://i0.wp.com/www.raducobra.com/img/image_" + imageName + ".jpg";
  55.    }
  56.  
  57.  
  58.    var bgImage = document.querySelector(".bg-image");
  59.    var image = new Image();
  60.    function changeBackground() {
  61.        bgImage.style.opacity = 0;
  62.        image.src = getRandomImageName();
  63.        image.onload = function() {
  64.            showBackgroundImage();
  65.        }
  66.    }
  67.  
  68.  
  69.    function showBackgroundImage() {
  70.        bgImage.style.backgroundImage = `url(${image.src})`;
  71.        bgImage.style.opacity = 1;
  72.        setTimeout(changeBackground, 10000);
  73. resetToDefaults()
  74.    }
  75.  
  76.    window.onload = function() {
  77.        setTimeout(changeBackground, 100);
  78.    }
  79. </script>
  80. <script src="topbar.js"></script>
  81. <script>
  82. function resetToDefaults() {
  83.            topbar.config({
  84.              autoRun      : true,
  85.              barThickness : 5,
  86.              barColors    : {
  87.                '0'      : 'rgba(26,  188, 156, .9)',
  88.                '.25'    : 'rgba(52,  152, 219, .9)',
  89.                '.50'    : 'rgba(241, 196, 15,  .9)',
  90.                '.75'    : 'rgba(230, 126, 34,  .9)',
  91.                '1.0'    : 'rgba(211, 84,  0,   .9)'
  92.              },
  93.              shadowBlur   : 10,
  94.              shadowColor  : 'rgba(0,   0,   0,   .6)'
  95.            })
  96. topbar.show()
  97.          setTimeout(function() {
  98.            topbar.hide()
  99.          }, 2000)
  100.          }
  101. </script>
  102. </body>
  103. </html>
  104.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda