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

  1. <!DOCTYPE html>
  2. <html lang="id">
  3. <head>
  4.    <meta charset="UTF-8">
  5.    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.    <title>Nonval.id – Layanan Cerdas</title>
  7.    <style>
  8.        :root {
  9.            --primary: #0d6efd;
  10.            --secondary: #f8f9fa;
  11.            --bg-gradient: linear-gradient(135deg, #e3f2fd, #ffffff);
  12.        }
  13.  
  14.        body {
  15.            margin: 0;
  16.            padding: 0;
  17.            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  18.            background: var(--bg-gradient);
  19.            display: flex;
  20.            flex-direction: column;
  21.            align-items: center;
  22.            justify-content: center;
  23.            min-height: 100vh;
  24.            color: #212529;
  25.        }
  26.  
  27.        header {
  28.            text-align: center;
  29.            margin-bottom: 40px;
  30.            animation: fadeInDown 1s ease-out;
  31.        }
  32.  
  33.        h1 {
  34.            font-size: 2.8em;
  35.            margin-bottom: 10px;
  36.        }
  37.  
  38.        p {
  39.            font-size: 1.2em;
  40.            color: #555;
  41.        }
  42.  
  43.        .links {
  44.            display: flex;
  45.            gap: 30px;
  46.            flex-wrap: wrap;
  47.            justify-content: center;
  48.            margin-top: 30px;
  49.            animation: fadeInUp 1s ease-out;
  50.        }
  51.  
  52.        a.button {
  53.            text-decoration: none;
  54.            padding: 15px 30px;
  55.            font-size: 1.1em;
  56.            color: white;
  57.            background-color: var(--primary);
  58.            border-radius: 12px;
  59.            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  60.            transition: background-color 0.3s, transform 0.2s;
  61.        }
  62.  
  63.        a.button:hover {
  64.            background-color: #0b5ed7;
  65.            transform: translateY(-2px);
  66.        }
  67.  
  68.        footer {
  69.            margin-top: 60px;
  70.            font-size: 0.9em;
  71.            color: #888;
  72.        }
  73.  
  74.        @keyframes fadeInDown {
  75.            from { opacity: 0; transform: translateY(-20px); }
  76.            to { opacity: 1; transform: translateY(0); }
  77.        }
  78.  
  79.        @keyframes fadeInUp {
  80.            from { opacity: 0; transform: translateY(20px); }
  81.            to { opacity: 1; transform: translateY(0); }
  82.        }
  83.  
  84.        @media (max-width: 600px) {
  85.            h1 {
  86.                font-size: 2em;
  87.            }
  88.  
  89.            .links {
  90.                flex-direction: column;
  91.                gap: 20px;
  92.            }
  93.        }
  94.    </style>
  95. </head>
  96. <body>
  97.  
  98.    <header>
  99.        <h1>Selamat Datang di Nonval.id</h1>
  100.        <p>Layanan cerdas untuk kebutuhan harian Anda</p>
  101.    </header>
  102.  
  103.    <div class="links">
  104.        <a class="button" href="https://chiffre-en-lettre.nonval.id/" target="_blank">
  105.            ?Chiffre Lettre
  106.        </a>
  107.        <a class="button" href="https://nonval.id/kodepos/" target="_blank">
  108.            📮 Cari Kode Pos Indonesia
  109.        </a>
  110.    </div>
  111.  
  112.    <footer>
  113.        &copy; 2025 2025 Nonval.id –
  114.    </footer>
  115.  
  116. </body>
  117. </html>
  118.  
  119.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda