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

  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.0">
  6.    <title>Site Maintenance</title>
  7.    <style>
  8.        body {
  9.            font-family: 'Helvetica Neue', Arial, sans-serif;
  10.            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  11.            height: 100vh;
  12.            margin: 0;
  13.            display: flex;
  14.            align-items: center;
  15.            justify-content: center;
  16.            color: #ffffff;
  17.        }
  18.  
  19.        .maintenance-container {
  20.            text-align: center;
  21.            padding: 2rem;
  22.            background: rgba(255, 255, 255, 0.1);
  23.            backdrop-filter: blur(10px);
  24.            border-radius: 20px;
  25.            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  26.            max-width: 600px;
  27.            margin: 20px;
  28.        }
  29.  
  30.        h1 {
  31.            font-size: 2.5rem;
  32.            margin-bottom: 1rem;
  33.            color: #ffffff;
  34.        }
  35.  
  36.        .icon {
  37.            font-size: 4rem;
  38.            margin-bottom: 1.5rem;
  39.        }
  40.  
  41.        p {
  42.            font-size: 1.1rem;
  43.            line-height: 1.6;
  44.            margin-bottom: 1.5rem;
  45.            color: rgba(255, 255, 255, 0.9);
  46.        }
  47.  
  48.        .timer {
  49.            font-size: 1.2rem;
  50.            font-weight: bold;
  51.            margin: 2rem 0;
  52.            color: #ffd700;
  53.        }
  54.  
  55.        .contact {
  56.            font-size: 0.9rem;
  57.            color: rgba(255, 255, 255, 0.8);
  58.        }
  59.  
  60.        .contact a {
  61.            color: #ffd700;
  62.            text-decoration: none;
  63.            transition: color 0.3s ease;
  64.        }
  65.  
  66.        .contact a:hover {
  67.            color: #ffffff;
  68.        }
  69.  
  70.        @keyframes spin {
  71.            0% { transform: rotate(0deg); }
  72.            100% { transform: rotate(360deg); }
  73.        }
  74.  
  75.        .loading {
  76.            width: 50px;
  77.            height: 50px;
  78.            border: 5px solid #f3f3f3;
  79.            border-top: 5px solid #ffd700;
  80.            border-radius: 50%;
  81.            animation: spin 1s linear infinite;
  82.            margin: 20px auto;
  83.        }
  84.    </style>
  85. </head>
  86. <body>
  87.    <div class="maintenance-container">
  88.        <div class="icon"></div>
  89.        <h1>Site Under Maintenance</h1>
  90.        <div class="loading"></div>
  91.        <p>We're currently performing scheduled maintenance to improve our services. We'll be back online shortly.</p>
  92.        <p>Thank you for your patience and understanding.</p>
  93.    </div>
  94. </body>
  95. </html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda