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

  1.  
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5.  <meta charset="UTF-8" />
  6.  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  7.  <title>Maintenance Mode | PULAUTOTO</title>
  8.  
  9.  <!-- Canonical URL -->
  10.  <link rel="canonical" href="https://olsonanderson.com/" />
  11.  
  12. <!-- META TAG -->
  13. <meta name="google-site-verification" content="5KjZsd04-FHmz--37TJA9jaY5eMUY24ncmC5OiuQb4A" />
  14.  
  15.  <!-- Google Fonts -->
  16.  <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
  17.  
  18.  <style>
  19.    :root {
  20.      --primary: #0a74da;
  21.      --primary-light: #3d8fe0;
  22.      --secondary: #222;
  23.      --accent: #00aced;
  24.      --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  25.      --text: #333;
  26.      --text-light: #666;
  27.      --white: #fff;
  28.      --bg-gradient: linear-gradient(145deg, #f5f7fa 0%, #e4e8ed 100%);
  29.    }
  30.    
  31.    * {
  32.      box-sizing: border-box;
  33.      margin: 0;
  34.      padding: 0;
  35.    }
  36.    
  37.    body {
  38.      font-family: 'Poppins', Arial, sans-serif;
  39.      background: var(--bg-gradient);
  40.      color: var(--text);
  41.      line-height: 1.6;
  42.      min-height: 100vh;
  43.      display: flex;
  44.      flex-direction: column;
  45.      justify-content: center;
  46.      align-items: center;
  47.      text-align: center;
  48.      padding: 20px;
  49.    }
  50.    
  51.    .maintenance-container {
  52.      max-width: 800px;
  53.      width: 100%;
  54.      background: var(--white);
  55.      border-radius: 15px;
  56.      box-shadow: var(--shadow);
  57.      padding: 50px;
  58.      position: relative;
  59.      overflow: hidden;
  60.      border: 1px solid rgba(0,0,0,0.1);
  61.    }
  62.    
  63.    .maintenance-container::before {
  64.      content: '';
  65.      position: absolute;
  66.      top: 0;
  67.      left: 0;
  68.      width: 100%;
  69.      height: 5px;
  70.      background: linear-gradient(to right, var(--primary), var(--accent));
  71.    }
  72.    
  73.    .logo {
  74.      max-height: 100px;
  75.      margin-bottom: 30px;
  76.      filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
  77.    }
  78.    
  79.    h1 {
  80.      font-size: 2.5rem;
  81.      color: var(--secondary);
  82.      margin-bottom: 20px;
  83.      position: relative;
  84.      display: inline-block;
  85.    }
  86.    
  87.    h1::after {
  88.      content: '';
  89.      position: absolute;
  90.      bottom: -10px;
  91.      left: 50%;
  92.      transform: translateX(-50%);
  93.      width: 80px;
  94.      height: 4px;
  95.      background: linear-gradient(to right, var(--primary), var(--accent));
  96.      border-radius: 2px;
  97.    }
  98.    
  99.    .maintenance-icon {
  100.      font-size: 5rem;
  101.      color: var(--primary);
  102.      margin: 30px 0;
  103.      animation: pulse 2s infinite;
  104.    }
  105.    
  106.    @keyframes pulse {
  107.      0% { transform: scale(1); }
  108.      50% { transform: scale(1.1); }
  109.      100% { transform: scale(1); }
  110.    }
  111.    
  112.    p {
  113.      color: var(--text-light);
  114.      font-size: 1.2rem;
  115.      margin-bottom: 30px;
  116.      line-height: 1.8;
  117.    }
  118.    
  119.    .progress-container {
  120.      width: 100%;
  121.      height: 10px;
  122.      background: #eee;
  123.      border-radius: 5px;
  124.      margin: 40px 0;
  125.      overflow: hidden;
  126.    }
  127.    
  128.    .progress-bar {
  129.      height: 100%;
  130.      width: 65%;
  131.      background: linear-gradient(to right, var(--primary), var(--accent));
  132.      border-radius: 5px;
  133.      animation: progress 2s ease-in-out infinite;
  134.    }
  135.    
  136.    @keyframes progress {
  137.      0% { width: 65%; }
  138.      50% { width: 70%; }
  139.      100% { width: 65%; }
  140.    }
  141.    
  142.    .social-links {
  143.      display: flex;
  144.      justify-content: center;
  145.      gap: 20px;
  146.      margin-top: 30px;
  147.    }
  148.    
  149.    .social-link {
  150.      display: inline-flex;
  151.      align-items: center;
  152.      justify-content: center;
  153.      width: 50px;
  154.      height: 50px;
  155.      background: var(--white);
  156.      border-radius: 50%;
  157.      color: var(--primary);
  158.      font-size: 1.5rem;
  159.      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  160.      transition: all 0.3s ease;
  161.    }
  162.    
  163.    .social-link:hover {
  164.      background: var(--primary);
  165.      color: var(--white);
  166.      transform: translateY(-5px);
  167.    }
  168.    
  169.    footer {
  170.      margin-top: 50px;
  171.      color: var(--text-light);
  172.      font-size: 0.9rem;
  173.    }
  174.    
  175.    footer a {
  176.      color: var(--primary);
  177.      text-decoration: none;
  178.      font-weight: 600;
  179.    }
  180.    
  181.    /* Responsive adjustments */
  182.    @media (max-width: 768px) {
  183.      .maintenance-container {
  184.        padding: 30px 20px;
  185.      }
  186.      
  187.      h1 {
  188.        font-size: 2rem;
  189.      }
  190.      
  191.      p {
  192.        font-size: 1rem;
  193.      }
  194.      
  195.      .maintenance-icon {
  196.        font-size: 3.5rem;
  197.      }
  198.    }
  199.  </style>
  200. </head>
  201. <body>
  202.  <div class="maintenance-container">
  203.    <img src="https://i.gyazo.com/391c60f78e10867befeec5e614d60952.png" alt="PULAUTOTO" class="logo">
  204.    <h1>Under Maintenance For : olsonanderson.com</h1>
  205.    
  206.    <div class="maintenance-icon">
  207.      <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  208.        <path d="M22 12h-4l-3 9L9 3l-3 9H2"></path>
  209.      </svg>
  210.    </div>
  211.    
  212.    <p>
  213.      We're currently performing scheduled maintenance to improve your experience.
  214.      The website will be back online shortly. Thank you for your patience.
  215.    </p>
  216.    
  217.    <div class="progress-container">
  218.      <div class="progress-bar"></div>
  219.    </div>
  220.    
  221.    <p>
  222.      Estimated time remaining: <strong>30 minutes</strong><br>
  223.      Last updated: <strong id="update-time"></strong>
  224.    </p>
  225.    
  226.    <div class="social-links">
  227.      <a href="#" class="social-link" aria-label="Twitter">
  228.        <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  229.          <path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"></path>
  230.        </svg>
  231.      </a>
  232.      <a href="#" class="social-link" aria-label="Facebook">
  233.        <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  234.          <path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"></path>
  235.        </svg>
  236.      </a>
  237.      <a href="#" class="social-link" aria-label="Instagram">
  238.        <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  239.          <rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect>
  240.          <path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path>
  241.          <line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line>
  242.        </svg>
  243.      </a>
  244.    </div>
  245.  </div>
  246.  
  247.  <footer>
  248.    <p>&copy; 2025 <a href="#" target="_blank">olsonanderson.com</a>. All rights reserved.</p>
  249.  </footer>
  250.  
  251.  <script>
  252.    // Display current time as last updated
  253.    document.addEventListener('DOMContentLoaded', function() {
  254.      const now = new Date();
  255.      const options = {
  256.        hour: '2-digit',
  257.        minute: '2-digit',
  258.        hour12: true,
  259.        month: 'short',
  260.        day: 'numeric'
  261.      };
  262.      document.getElementById('update-time').textContent = now.toLocaleTimeString('en-US', options);
  263.      
  264.      // Update time every minute
  265.      setInterval(() => {
  266.        const now = new Date();
  267.        document.getElementById('update-time').textContent = now.toLocaleTimeString('en-US', options);
  268.      }, 60000);
  269.    });
  270.  </script>
  271. <script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"rayId":"95317c67587bf408","serverTiming":{"name":{"cfExtPri":true,"cfEdge":true,"cfOrigin":true,"cfL4":true,"cfSpeedBrain":true,"cfCacheStatus":true}},"version":"2025.6.2","token":"81506a34c88b44148ec33ae96f027494"}' crossorigin="anonymous"></script>
  272. </body>
  273. </html>
  274.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda