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://reloadsworld.com/product/imr-4451-with-enduron-technology-smokeless-powder-1-lb

  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>Account Suspended</title>
  7.    <style>
  8.        * {
  9.            margin: 0;
  10.            padding: 0;
  11.            box-sizing: border-box;
  12.        }
  13.  
  14.        body {
  15.            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  16.            background: linear-gradient(135deg, #0c0f25 0%, #121436 100%);
  17.            min-height: 100vh;
  18.            display: flex;
  19.            align-items: center;
  20.            justify-content: center;
  21.            color: #333;
  22.        }
  23.  
  24.        .container {
  25.            max-width: 600px;
  26.            width: 90%;
  27.            background: rgba(255, 255, 255, 0.95);
  28.            backdrop-filter: blur(10px);
  29.            border-radius: 20px;
  30.            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  31.            padding: 40px;
  32.            text-align: center;
  33.            position: relative;
  34.            overflow: hidden;
  35.        }
  36.  
  37.        .container::before {
  38.            content: '';
  39.            position: absolute;
  40.            top: -50%;
  41.            left: -50%;
  42.            width: 200%;
  43.            height: 200%;
  44.            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  45.            animation: shimmer 3s infinite;
  46.        }
  47.  
  48.        @keyframes shimmer {
  49.            0% { transform: rotate(0deg); }
  50.            100% { transform: rotate(360deg); }
  51.        }
  52.  
  53.        .icon-container {
  54.            margin-bottom: 30px;
  55.            position: relative;
  56.            z-index: 1;
  57.        }
  58.  
  59.        .warning-icon {
  60.            width: 80px;
  61.            height: 80px;
  62.            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  63.            border-radius: 50%;
  64.            display: flex;
  65.            align-items: center;
  66.            justify-content: center;
  67.            margin: 0 auto;
  68.            animation: pulse 2s infinite;
  69.            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  70.        }
  71.  
  72.        @keyframes pulse {
  73.            0% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3); }
  74.            50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4); }
  75.            100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3); }
  76.        }
  77.  
  78.        .warning-icon::before {
  79.            content: '⚠';
  80.            font-size: 40px;
  81.            color: white;
  82.        }
  83.  
  84.        .content {
  85.            position: relative;
  86.            z-index: 1;
  87.        }
  88.  
  89.        .title {
  90.            font-size: 32px;
  91.            font-weight: 700;
  92.            color: #2c3e50;
  93.            margin-bottom: 15px;
  94.            background: linear-gradient(135deg, #667eea, #764ba2);
  95.            -webkit-background-clip: text;
  96.            -webkit-text-fill-color: transparent;
  97.            background-clip: text;
  98.        }
  99.  
  100.        .subtitle {
  101.            font-size: 18px;
  102.            color: #7f8c8d;
  103.            margin-bottom: 30px;
  104.            line-height: 1.6;
  105.        }
  106.  
  107.        .reason-box {
  108.            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  109.            color: white;
  110.            padding: 20px;
  111.            border-radius: 15px;
  112.            margin-bottom: 30px;
  113.            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
  114.        }
  115.  
  116.        .reason-title {
  117.            font-size: 16px;
  118.            font-weight: 600;
  119.            margin-bottom: 10px;
  120.        }
  121.  
  122.        .reason-list {
  123.            text-align: left;
  124.            font-size: 14px;
  125.            line-height: 1.8;
  126.        }
  127.  
  128.        .reason-list li {
  129.            margin-bottom: 5px;
  130.        }
  131.  
  132.        .info-grid {
  133.            display: grid;
  134.            grid-template-columns: 1fr;
  135.            gap: 20px;
  136.            margin-bottom: 30px;
  137.        }
  138.  
  139.        .info-item {
  140.            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  141.            padding: 20px;
  142.            border-radius: 12px;
  143.            border-left: 4px solid #667eea;
  144.        }
  145.  
  146.        .info-label {
  147.            font-size: 12px;
  148.            color: #6c757d;
  149.            text-transform: uppercase;
  150.            letter-spacing: 1px;
  151.            margin-bottom: 5px;
  152.        }
  153.  
  154.        .info-value {
  155.            font-size: 16px;
  156.            font-weight: 600;
  157.            color: #2c3e50;
  158.        }
  159.  
  160.        .action-buttons {
  161.            display: flex;
  162.            gap: 15px;
  163.            justify-content: center;
  164.            flex-wrap: wrap;
  165.        }
  166.  
  167.        .btn {
  168.            padding: 12px 30px;
  169.            border: none;
  170.            border-radius: 25px;
  171.            font-size: 16px;
  172.            font-weight: 600;
  173.            cursor: pointer;
  174.            transition: all 0.3s ease;
  175.            text-decoration: none;
  176.            display: inline-block;
  177.            position: relative;
  178.            overflow: hidden;
  179.        }
  180.  
  181.        .btn-primary {
  182.            background: linear-gradient(135deg, #667eea, #764ba2);
  183.            color: white;
  184.            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
  185.        }
  186.  
  187.        .btn-primary:hover {
  188.            transform: translateY(-2px);
  189.            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  190.        }
  191.  
  192.        .btn-secondary {
  193.            background: linear-gradient(135deg, #74b9ff, #0984e3);
  194.            color: white;
  195.            box-shadow: 0 5px 15px rgba(116, 185, 255, 0.3);
  196.        }
  197.  
  198.        .btn-secondary:hover {
  199.            transform: translateY(-2px);
  200.            box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
  201.        }
  202.  
  203.        .footer {
  204.            margin-top: 40px;
  205.            padding-top: 30px;
  206.            border-top: 1px solid #e9ecef;
  207.            color: #6c757d;
  208.            font-size: 14px;
  209.        }
  210.  
  211.        .footer-links {
  212.            margin-top: 15px;
  213.        }
  214.  
  215.        .footer-links a {
  216.            color: #667eea;
  217.            text-decoration: none;
  218.            margin: 0 10px;
  219.            transition: color 0.3s ease;
  220.        }
  221.  
  222.        .footer-links a:hover {
  223.            color: #764ba2;
  224.        }
  225.  
  226.        @media (max-width: 768px) {
  227.            .container {
  228.                padding: 30px 20px;
  229.            }
  230.            
  231.            .title {
  232.                font-size: 28px;
  233.            }
  234.            
  235.            .info-grid {
  236.                grid-template-columns: 1fr;
  237.            }
  238.            
  239.            .action-buttons {
  240.                flex-direction: column;
  241.                align-items: center;
  242.            }
  243.            
  244.            .btn {
  245.                width: 100%;
  246.                max-width: 300px;
  247.            }
  248.        }
  249.    </style>
  250. </head>
  251. <body>
  252.    <div class="container">
  253.        <div class="icon-container">
  254.            <div class="warning-icon"></div>
  255.        </div>
  256.        
  257.        <div class="content">
  258.            <h1 class="title">Account Suspended!</h1>
  259.            <p class="subtitle">Your hosting account has been temporarily suspended</p>
  260.            
  261.            <div class="reason-box">
  262.                <div class="reason-title">Common Reasons for Suspension:</div>
  263.                <ul class="reason-list">
  264.                    <li>Payment overdue or failed billing</li>
  265.                    <li>Violation of Terms of Service</li>
  266.                    <li>Excessive resource usage</li>
  267.                    <li>Security concerns or suspicious activity</li>
  268.                    <li>DMCA or copyright infringement</li>
  269.                </ul>
  270.            </div>
  271.            
  272.            <div class="info-grid">
  273.                <div class="info-item">
  274.                    <div class="info-label">Domain name</div>
  275.                    <div class="info-value" id="url">...</div>
  276.                </div>
  277.            </div>
  278.        </div>
  279.        <div class="footer">
  280.            <p>Need immediate assistance? Contact the hosting administrator</p>
  281.        </div>
  282.    </div>
  283.    <script>
  284.        document.getElementById("url").textContent = window.location.hostname;
  285.    </script>
  286. </body>
  287. </html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda