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

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.    <meta charset="utf-8">
  5.    <meta name=viewport content="width=device-width, initial-scale=1">
  6.    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
  7.    <style>
  8.        body { margin: 0; padding: 0; }
  9.        html { height: 100%; cursor: default; }
  10.        body {
  11.            font-family: "Roboto", sans-serif; /* Default font */
  12.            width: 100%; height: 100%;
  13.            text-align: center;
  14.            display: table;
  15.            opacity: 1;
  16.            animation: fadein 3s forwards;
  17.        }
  18.        h2 {
  19.            font-weight: 300;
  20.            margin-bottom: 25px;
  21.        }
  22.        img {
  23.            width: 25%; /* Image width */
  24.            border: 0; /* For IE */
  25.        }
  26.        #main {
  27.            vertical-align: middle;
  28.            display: table-cell;
  29.        }
  30.        /* Progress bar */
  31.        #progress {
  32.            width: 45%; /* Bar width */
  33.            margin: 0 auto;
  34.            border-radius: 10px; /* Roundness */
  35.            background-color: #a8a8a8; /* Background colour */
  36.            padding: 7px 5px;
  37.            /* border: 5px solid #a8a8a8; Border */
  38.        }
  39.        #fill {
  40.            padding: 2px 0;
  41.            background-color: #00b98b; /* Fill colour */
  42.            width: 35%; /* Bar percentage, change text below also */
  43.            border-radius: 25px; /* Roundness */
  44.            animation: proanimate 2s;
  45.        }
  46.        #barpercent h3 {
  47.            color: white; /* Bar percentage text colour */
  48.            margin: 0; padding: 0;
  49.            opacity: 1;
  50.            animation: fadein 3s forwards;
  51.        }
  52.  
  53.        /* Fades in animation */
  54.        @keyframes fadein  {
  55.            from { opacity: 0; }
  56.        }
  57.        /* Animates bar on page load */
  58.        @keyframes proanimate {
  59.            from { width: 0%; }
  60.        }
  61.  
  62.        @media screen and (max-width:600px) {
  63.            img {
  64.                width: 60%;
  65.            }
  66.            h1 {
  67.                font-size: 1.3em;
  68.            }
  69.            h2 {
  70.                margin: 1.1em;
  71.                font-size: 1.1em;
  72.            }
  73.            #progress {
  74.                width: 80%; /* Bar width */
  75.            }
  76.        }
  77.    </style>
  78.    <title>Coming Soon</title>
  79. </head>
  80. <body>
  81.    <div id="main">
  82.        <img src="logo.png" alt="Logo Image">
  83.        <h1>BitSnapper</h1>
  84.        <h2>Our website is currently under construction. </h2>
  85.        <div id="progress"><div id="fill"><div id="barpercent"><h3>30%</h3></div></div></div>
  86.    </div>
  87.    <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap" rel="stylesheet">
  88. </body>
  89. </html>
  90.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda