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://freehorseracingtv.com/live2/sportystuff-tv-live/

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.    <meta charset="utf-8">
  5.    <meta name="viewport" content="width=device-width, initial-scale=1">
  6.    <title>Page Not Found - Live TV World</title>
  7.    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
  8.    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
  9.    <style>
  10.        body {
  11.            background: #121212;
  12.            color: #fff;
  13.            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  14.            min-height: 100vh;
  15.            display: flex;
  16.            align-items: center;
  17.        }
  18.        .error-container {
  19.            position: relative;
  20.            overflow: hidden;
  21.        }
  22.        .error-content {
  23.            background: linear-gradient(145deg, rgba(26,26,26,0.9) 0%, rgba(45,45,45,0.9) 100%);
  24.            border: 1px solid rgba(255,255,255,0.1);
  25.            border-radius: 20px;
  26.            padding: 4rem 2rem;
  27.            position: relative;
  28.            z-index: 1;
  29.            backdrop-filter: blur(10px);
  30.            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  31.        }
  32.        .number-404 {
  33.            font-size: 150px;
  34.            font-weight: bold;
  35.            line-height: 1;
  36.            background: linear-gradient(45deg, #0d6efd, #0dcaf0);
  37.            -webkit-background-clip: text;
  38.            -webkit-text-fill-color: transparent;
  39.            text-shadow: 2px 2px 10px rgba(13,110,253,0.3);
  40.            margin-bottom: 1rem;
  41.            position: relative;
  42.        }
  43.        .number-404::after {
  44.            content: '404';
  45.            position: absolute;
  46.            left: 0;
  47.            top: 0;
  48.            opacity: 0.1;
  49.            filter: blur(10px);
  50.            transform: scale(1.2);
  51.            z-index: -1;
  52.        }
  53.        .error-message {
  54.            color: #6c757d;
  55.            font-size: 1.2rem;
  56.            max-width: 500px;
  57.            margin: 0 auto 2rem;
  58.        }
  59.        .btn-glow {
  60.            position: relative;
  61.            background: linear-gradient(45deg, #0d6efd, #0dcaf0);
  62.            border: none;
  63.            padding: 15px 30px;
  64.            font-size: 1.1rem;
  65.            transition: all 0.3s ease;
  66.        }
  67.        .btn-glow:hover {
  68.            transform: translateY(-2px);
  69.            box-shadow: 0 5px 15px rgba(13,110,253,0.4);
  70.        }
  71.        .btn-glow::before {
  72.            content: '';
  73.            position: absolute;
  74.            top: 0;
  75.            left: 0;
  76.            right: 0;
  77.            bottom: 0;
  78.            border-radius: inherit;
  79.            background: inherit;
  80.            filter: blur(10px);
  81.            opacity: 0;
  82.            transition: all 0.3s ease;
  83.            z-index: -1;
  84.        }
  85.        .btn-glow:hover::before {
  86.            opacity: 0.7;
  87.        }
  88.        .floating-icon {
  89.            animation: float 3s ease-in-out infinite;
  90.            font-size: 3rem;
  91.            color: #0d6efd;
  92.            margin-bottom: 2rem;
  93.        }
  94.        @keyframes  float {
  95.            0% { transform: translateY(0px); }
  96.            50% { transform: translateY(-20px); }
  97.            100% { transform: translateY(0px); }
  98.        }
  99.    </style>
  100. </head>
  101. <body>
  102.    <div class="container mt-5">
  103.        <div class="row justify-content-center">
  104.            <div class="col-md-8">
  105.                <div class="error-container text-center">
  106.                    <div class="error-content">
  107.                        <div class="floating-icon">
  108.                            <i class="fas fa-tv"></i>
  109.                        </div>
  110.                        <div class="number-404">404</div>
  111.                        <h2 class="text-white h3 mb-4">Page Not Found</h2>
  112.                        <p class="error-message">The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.</p>
  113.                        <a href="/" class="btn btn-glow">
  114.                            <i class="fas fa-home me-2"></i>Back to Home
  115.                        </a>
  116.                    </div>
  117.                </div>
  118.            </div>
  119.        </div>
  120.    </div>
  121.  
  122.    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
  123. </body>
  124. </html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda