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: http://236.131.205.92.host.secureserver.net/index.html

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.    <meta charset="UTF-8">
  5.    <title>Server Test Page</title>
  6.    <style>
  7.        body {
  8.            background-color: #f2f2f2;
  9.            font-family: Arial, sans-serif;
  10.            text-align: center;
  11.            padding-top: 100px;
  12.        }
  13.        .box {
  14.            background: white;
  15.            display: inline-block;
  16.            padding: 30px 50px;
  17.            border-radius: 10px;
  18.            box-shadow: 0 0 10px #aaa;
  19.        }
  20.    </style>
  21. </head>
  22. <body>
  23.    <div class="box">
  24.        <h1>Coming Soon!</h1>
  25.        <p>This is a page served from your domain.</p>
  26.        <p>Time: <span id="time"></span></p>
  27.    </div>
  28.  
  29.    <script>
  30.        // Show current server time using JavaScript (client-side)
  31.        document.getElementById('time').innerText = new Date().toLocaleString();
  32.    </script>
  33. </body>
  34. </html>
  35.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda