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://umw-indonesia.ac.id

  1.  
  2.    <!DOCTYPE html>
  3.    <html lang="id">
  4.      <head>
  5.        <meta charset="UTF-8" />
  6.        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7.        <title>UMW Indonesia - Universitas Mandala Waluya Indonesia</title>
  8.        <meta name="description" content="Universitas Mandala Waluya Indonesia sebagai pusat pendidikan tinggi yang berkontribusi untuk kemajuan bangsa Indonesia.">
  9.        <style>
  10.          * {
  11.            margin: 0;
  12.            padding: 0;
  13.            box-sizing: border-box;
  14.          }
  15.          
  16.          body {
  17.            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  18.            line-height: 1.6;
  19.            color: #333;
  20.            background: #f8f9fa;
  21.            min-height: 100vh;
  22.            display: flex;
  23.            flex-direction: column;
  24.          }
  25.          
  26.          .container {
  27.            max-width: 800px;
  28.            margin: 0 auto;
  29.            padding: 0 20px;
  30.          }
  31.          
  32.          main {
  33.            flex: 1;
  34.            display: flex;
  35.            align-items: center;
  36.            justify-content: center;
  37.            padding: 60px 0;
  38.          }
  39.          
  40.          .maintenance-card {
  41.            background: white;
  42.            border-radius: 8px;
  43.            padding: 48px 32px;
  44.            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  45.            text-align: center;
  46.            max-width: 500px;
  47.            width: 100%;
  48.          }
  49.          
  50.          .maintenance-icon {
  51.            font-size: 2.5rem;
  52.            margin-bottom: 24px;
  53.            opacity: 0.8;
  54.          }
  55.          
  56.          h1 {
  57.            font-size: 1.875rem;
  58.            font-weight: 600;
  59.            margin-bottom: 16px;
  60.            color: #1f2937;
  61.          }
  62.          
  63.          .subtitle {
  64.            font-size: 1rem;
  65.            color: #6b7280;
  66.            margin-bottom: 24px;
  67.          }
  68.          
  69.          .website-name {
  70.            font-size: 1.125rem;
  71.            font-weight: 500;
  72.            color: #374151;
  73.            margin-bottom: 32px;
  74.            padding: 12px 20px;
  75.            background: #f3f4f6;
  76.            border-radius: 6px;
  77.            display: inline-block;
  78.          }
  79.          
  80.          .contact-btn {
  81.            display: inline-block;
  82.            background: #374151;
  83.            color: white;
  84.            padding: 12px 24px;
  85.            margin-left: 15px;
  86.            text-decoration: none;
  87.            border-radius: 6px;
  88.            font-weight: 500;
  89.            font-size: 0.875rem;
  90.            transition: background 0.2s ease;
  91.          }
  92.          
  93.          .contact-btn:hover {
  94.            background: #1f2937;
  95.          }
  96.          
  97.          footer {
  98.            background: white;
  99.            border-top: 1px solid #e5e7eb;
  100.            padding: 20px 0;
  101.            text-align: center;
  102.            color: #6b7280;
  103.            font-size: 0.875rem;
  104.          }
  105.          
  106.          .partners-section {
  107.            background: white;
  108.            border-top: 1px solid #e5e7eb;
  109.            padding: 40px 0;
  110.          }
  111.          
  112.          .partners-section h2 {
  113.            color: #1f2937;
  114.            text-align: center;
  115.            margin-bottom: 24px;
  116.            font-size: 1.5rem;
  117.            font-weight: 600;
  118.          }
  119.          
  120.          .partners-list {
  121.            max-width: 600px;
  122.            margin: 0 auto;
  123.            text-align: center;
  124.          }
  125.          
  126.          .partners-list p {
  127.            margin-bottom: 8px;
  128.          }
  129.          
  130.          .partners-list a {
  131.            color: #374151;
  132.            text-decoration: none;
  133.            padding: 8px 12px;
  134.            border-radius: 4px;
  135.            background: #f9fafb;
  136.            transition: background 0.2s ease;
  137.            display: inline-block;
  138.            font-size: 0.875rem;
  139.          }
  140.          
  141.          .partners-list a:hover {
  142.            background: #f3f4f6;
  143.            text-decoration: underline;
  144.          }
  145.          
  146.          @media (max-width: 640px) {
  147.            .maintenance-card {
  148.              padding: 32px 24px;
  149.              margin: 20px;
  150.            }
  151.            
  152.            h1 {
  153.              font-size: 1.5rem;
  154.            }
  155.            
  156.            .partners-section {
  157.              padding: 32px 0;
  158.            }
  159.          }
  160.        </style>
  161.      </head>
  162.      
  163.      <body>
  164.        <main>
  165.          <div class="container">
  166.            <div class="maintenance-card">
  167.              <div class="maintenance-icon">⚠️</div>
  168.              <h1>Under Maintenance</h1>
  169.              <p class="subtitle">Website sedang dalam pemeliharaan sistem</p>
  170.              <div class="website-name">UMW Indonesia</div>
  171.              <a href="mailto:admin@umw-indonesia.ac.id?subject=Hallo%20Admin%20UMW Indonesia" class="contact-btn">
  172.                Hubungi Admin
  173.              </a>
  174.            </div>
  175.          </div>
  176.        </main>
  177.        
  178.        
  179.        
  180.        <footer>
  181.          <div class="container">
  182.            © 2025 UMW Indonesia. All rights reserved.
  183.          </div>
  184.        </footer>
  185.      </body>
  186.    </html>
  187.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda